I just realized the professor Google is unable to present a specific page where I can find out, when static
keyword added to PHP 4. Though following the change log for php 4 I can see that it was available since Version 4.0.6 (or before) but why does it throws:
Parse error: syntax error, unexpected T_STATIC, expecting T_OLD_FUNCTION or T_FUNCTION or T_VAR or '}' in {FILE_PATH+LINE#}
for a simple code as follows:
class myClass
{
static $_debug = true;
}
Or this assignment of class-variable was introduced in earlier versions of PHP?