<?php
class Ancestor {
public function foo() { return 'PARENT'; }
}
class Child extends Ancestor {
public function foo() { return 'CHILD'; }
}
$foo = new Ancestor;
$bar = new Child;
var_dump($foo->foo());
var_dump($bar->foo());
var_dump(call_user_func([$bar, 'Ancestor::foo']));
string(6) "PARENT"
string(5) "CHILD"
Deprecated: Callables of the form ["Child", "Ancestor::foo"] are deprecated in /in/bPhYP on line 16
string(6) "PARENT"
Parse error: syntax error, unexpected '[', expecting ')' in /in/bPhYP on line 16
Process exited with code 255.
Output for 5.0.0 - 5.0.5
Parse error: parse error, unexpected '[', expecting ')' in /in/bPhYP on line 16
Process exited with code 255.
Output for 4.4.2 - 4.4.9
Parse error: syntax error, unexpected T_STRING, expecting T_OLD_FUNCTION or T_FUNCTION or T_VAR or '}' in /in/bPhYP on line 4
Process exited with code 255.
Parse error: parse error, unexpected T_STRING, expecting T_OLD_FUNCTION or T_FUNCTION or T_VAR or '}' in /in/bPhYP 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/bPhYP on line 4
Process exited with code 255.