<?php
class A {
const HIGH = 0;
public function getStatic()
{
return static::HIGH;
}
public function getSelf()
{
return self::HIGH;
}
}
class B extends A {
const HIGH = 100;
}
$a = new A();
$b = new B();
var_dump([
"a" => [
"self" => $a->getSelf(),
"static" => $a->getStatic()
],
"b" => [
"self" => $b->getSelf(),
"static" => $b->getStatic()
]
]);
Parse error: syntax error, unexpected '[', expecting ')' in /in/fgh0d on line 24
Process exited with code 255.
Output for 5.1.0 - 5.1.6, 5.2.0 - 5.2.17
Parse error: syntax error, unexpected T_STATIC in /in/fgh0d on line 8
Process exited with code 255.
Output for 5.0.0 - 5.0.5
Parse error: parse error, unexpected T_STATIC in /in/fgh0d on line 8
Process exited with code 255.
Output for 4.4.2 - 4.4.9
Parse error: syntax error, unexpected T_CONST, expecting T_OLD_FUNCTION or T_FUNCTION or T_VAR or '}' in /in/fgh0d on line 4
Process exited with code 255.
Parse error: parse error, unexpected T_CONST, expecting T_OLD_FUNCTION or T_FUNCTION or T_VAR or '}' in /in/fgh0d on line 4
Process exited with code 255.
Output for 4.3.2 - 4.3.4
Parse error: parse error, expecting `T_OLD_FUNCTION' or `T_FUNCTION' or `T_VAR' or `'}'' in /in/fgh0d on line 4
Process exited with code 255.