mirror of
https://github.com/php/php-src.git
synced 2024-12-14 20:33:36 +08:00
21 lines
424 B
PHP
21 lines
424 B
PHP
--TEST--
|
|
Bug #75420.16 (Indirect modification of magic method argument)
|
|
--FILE--
|
|
<?php
|
|
class Test implements ArrayAccess {
|
|
public function offsetExists($x) { }
|
|
public function offsetGet($x) { }
|
|
public function offsetSet($x, $y) { $GLOBALS["obj"] = 24; var_dump($this); }
|
|
public function offsetUnset($x) { }
|
|
}
|
|
|
|
$obj = new Test;
|
|
$name = "foo";
|
|
$obj[$name] = 1;
|
|
var_dump($obj);
|
|
?>
|
|
--EXPECT--
|
|
object(Test)#1 (0) {
|
|
}
|
|
int(24)
|