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.
 
 
 
 
 
 

39 lines
434 B

--TEST--
Testing magic methods __set, __get and __call in cascade
--FILE--
<?php
class test {
static public $i = 0;
public function __construct() {
self::$i++;
}
public function __set($a, $b) {
return x();
}
public function __get($a) {
return x();
}
public function __call($a, $b) {
return x();
}
}
function x() {
return new test;
}
x()
->a
->b()
->c = 1;
var_dump(test::$i);
?>
--EXPECT--
int(4)