<?php
class Foo {
public function __construct($id) {
var_dump( $id );
}
}
class Bar extends Foo {
public function __construct($id) {
call_user_func_array(array('parent', __FUNCTION__), func_get_args());
call_user_func_array(array($this, 'parent::' . __FUNCTION__), func_get_args());
}
}
new Bar(1);
Deprecated: Use of "parent" in callables is deprecated in /in/sv4no on line 11
int(1)
Deprecated: Callables of the form ["Bar", "parent::__construct"] are deprecated in /in/sv4no on line 12
int(1)
Fatal error: func_get_args(): Can't be used as a function parameter in /in/sv4no on line 11
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/sv4no 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/sv4no 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/sv4no on line 4
Process exited with code 255.