<?php
class A {
public function __destruct() {
echo "destroying A\n";
}
}
class B {
public function __destruct() {
echo "destroying B\n";
}
}
function f() {
$a = new A;
$b = new B;
$a = null;
echo "hi\n";
}
f();
Parse error: syntax error, unexpected T_STRING, expecting T_OLD_FUNCTION or T_FUNCTION or T_VAR or '}' in /in/OrVFT 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/OrVFT 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/OrVFT on line 4
Process exited with code 255.