mirror of
https://github.com/php/php-src.git
synced 2024-11-27 20:03:40 +08:00
20 lines
370 B
PHP
20 lines
370 B
PHP
--TEST--
|
|
Bug #75420.6 (Indirect modification of magic method argument)
|
|
--FILE--
|
|
<?php
|
|
class Test {
|
|
public function __isset($x) { $GLOBALS["obj"] = 24; return true; }
|
|
public function __get($x) { var_dump($this); return 42; }
|
|
}
|
|
|
|
$obj = new Test;
|
|
$name = "foo";
|
|
var_dump(empty($obj->$name));
|
|
var_dump($obj);
|
|
?>
|
|
--EXPECT--
|
|
object(Test)#1 (0) {
|
|
}
|
|
bool(false)
|
|
int(24)
|