mirror of
https://github.com/php/php-src.git
synced 2024-12-15 04:45:03 +08:00
18 lines
310 B
PHP
18 lines
310 B
PHP
--TEST--
|
|
Bug #75420.7 (Indirect modification of magic method argument)
|
|
--FILE--
|
|
<?php
|
|
class Test {
|
|
public function __set($x,$v) { $GLOBALS["name"] = 24; var_dump($x); }
|
|
}
|
|
|
|
$obj = new Test;
|
|
$name = "foo";
|
|
$name = str_repeat($name, 2);
|
|
$obj->$name = 1;
|
|
var_dump($name);
|
|
?>
|
|
--EXPECT--
|
|
string(6) "foofoo"
|
|
int(24)
|