<?php
class A
{
public function __get($n)
{
var_dump("__get");
return 1;
}
public function __set($n, $v)
{
var_dump("__set");
}
}
$a = new A;
$a->q = "";
$a->q += 12;
Parse error: syntax error, unexpected T_STRING, expecting T_OLD_FUNCTION or T_FUNCTION or T_VAR or '}' in /in/g8a9l on line 6
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/g8a9l on line 6
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/g8a9l on line 6
Process exited with code 255.