<?php
class a {
function __construct() { }
function __invoke() { echo("Invoked\n"); }
}
$a = new a();
$a();
// Prints: Invoked
class b {
private $x;
function __construct() {
$this->x = new a();
$this->x();
}
}
$b = new b();
Invoked
Fatal error: Uncaught Error: Call to undefined method b::x() in /in/3Pu60:17
Stack trace:
#0 /in/3Pu60(21): b->__construct()
#1 {main}
thrown in /in/3Pu60 on line 17
Process exited with code 255.
Fatal error: Function name must be a string in /in/3Pu60 on line 9
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/3Pu60 on line 13
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/3Pu60 on line 13
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/3Pu60 on line 13
Process exited with code 255.