summaryrefslogtreecommitdiff
path: root/Zend/tests/bug30394.phpt
blob: 895326359bbfb77c389eb2f1605c50f9a29e0d7d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
--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