mirror of
https://github.com/php/php-src.git
synced 2024-11-25 02:44:58 +08:00
31 lines
436 B
PHP
Executable File
31 lines
436 B
PHP
Executable File
--TEST--
|
|
Bug #30394 (Assignment operators yield wrong result with __get/__set)
|
|
--FILE--
|
|
<?php
|
|
class Container
|
|
{
|
|
public function __get( $what )
|
|
{
|
|
return $this->_p[ $what ];
|
|
}
|
|
|
|
public function __set( $what, $value )
|
|
{
|
|
$this->_p[ $what ] = $value;
|
|
}
|
|
|
|
private $_p = array();
|
|
}
|
|
|
|
$c = new Container();
|
|
$c->a = 1;
|
|
$c->a += 1;
|
|
print $c->a; // --> 2
|
|
|
|
print " - ";
|
|
$c->a += max( 0, 1 );
|
|
print $c->a; // --> 4 (!)
|
|
?>
|
|
--EXPECT--
|
|
2 - 3
|