mirror of
https://github.com/php/php-src.git
synced 2024-11-27 11:53:33 +08:00
75a678a7e3
Co-authored-by: Nikita Popov <nikita.ppv@gmail.com>
21 lines
500 B
PHP
21 lines
500 B
PHP
--TEST--
|
|
Bug #75420.14 (Indirect modification of magic method argument)
|
|
--FILE--
|
|
<?php
|
|
class Test implements ArrayAccess {
|
|
public function offsetExists($x): bool { $GLOBALS["obj"] = 24; return true; }
|
|
public function offsetGet($x): mixed { var_dump($x); return 42; }
|
|
public function offsetSet($x, $y): void { }
|
|
public function offsetUnset($x): void { }
|
|
}
|
|
|
|
$obj = new Test;
|
|
$name = "foo";
|
|
var_dump(empty($obj[$name]));
|
|
var_dump($obj);
|
|
?>
|
|
--EXPECT--
|
|
string(3) "foo"
|
|
bool(false)
|
|
int(24)
|