You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

31 lines
464 B

--TEST--
ZE2 post increment/decrement property of overloaded object with assignment
--FILE--
<?php
class Test {
private $real_a = 2;
function __set($property, $value) {
if ($property = "a") {
$this->real_a = $value;
}
}
function __get($property) {
if ($property = "a") {
return $this->real_a;
}
}
}
$obj = new Test;
var_dump($obj->a);
$t1 = $obj->a++;
var_dump($obj->a);
echo "---Done---\n";
?>
--EXPECT--
int(2)
int(3)
---Done---