1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00
Files
archived-php-src/Zend/tests/bug39297.phpt
DanielEScherzer ea297654f4 Zend/*: fix a bunch of typos (GH-16017)
* Zend/*: fix a bunch of typos

* Zend/tests/try/try_catch_finally_005.phpt: update string length
2024-09-24 10:55:21 +02:00

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)