php-src/ext/reflection/tests/ReflectionReference_bug78263.phpt
Nikita Popov c817b8020c Special-case rc=1 self-referential arrays in ReflectionReference
New fix for bug #78263. This is special-cased elsewhere in the engine,
so we need to mirror it here.
2019-07-22 16:59:23 +02:00

17 lines
372 B
PHP

--TEST--
Bug #78263: Handling of self-referential array special case
--FILE--
<?php
// The case of a directly self-referential array is special and will
// be treated as a proper reference despite rc=1 during array copying.
$a = [&$a];
$b = [$a];
unset($a);
var_dump(ReflectionReference::fromArrayElement($b[0], 0));
?>
--EXPECT--
object(ReflectionReference)#1 (0) {
}