mirror of
https://github.com/php/php-src.git
synced 2026-03-24 08:12:21 +01:00
Second pass through `Zend/tests/bug*` to organize the tests. Move tests to existing sub directories, and create some new sub directories: * `ArrayAccess` * `autoload` * `clone` * `serialize` (also covers `unserialize()`) * `switch` Work towards GH-15631
46 lines
966 B
PHP
46 lines
966 B
PHP
--TEST--
|
|
Bug #39297 (Memory corruption because of indirect modification of overloaded array)
|
|
--FILE--
|
|
<?php
|
|
function compareByRef(&$first, &$second) {
|
|
return $first === $second;
|
|
}
|
|
|
|
class MyTree implements ArrayAccess {
|
|
public $parent;
|
|
public $children = array();
|
|
|
|
public function offsetExists($offset): bool {
|
|
}
|
|
|
|
public function offsetUnset($offset): void {
|
|
}
|
|
|
|
public function offsetSet($offset, $value): void {
|
|
echo "offsetSet()\n";
|
|
$canonicalName = strtolower($offset);
|
|
$this->children[$canonicalName] = $value;
|
|
$value->parent = $this;
|
|
}
|
|
|
|
public function offsetGet($offset): mixed {
|
|
echo "offsetGet()\n";
|
|
$canonicalName = strtolower($offset);
|
|
return $this->children[$canonicalName];
|
|
}
|
|
|
|
}
|
|
|
|
$id = 'Test';
|
|
|
|
$root = new MyTree();
|
|
$child = new MyTree();
|
|
$root[$id] = $child;
|
|
|
|
var_dump(compareByRef($root[$id], $child));
|
|
?>
|
|
--EXPECT--
|
|
offsetSet()
|
|
offsetGet()
|
|
bool(true)
|