Your IP : 216.73.216.48


Current Path : /hdd/hdd12/install/php/php-7.4.32/ext/reflection/tests/
Upload File :
Current File : //hdd/hdd12/install/php/php-7.4.32/ext/reflection/tests/ReflectionReference_bug78263.phpt

--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) {
}