mirror of
https://github.com/php/php-src.git
synced 2024-12-19 15:00:15 +08:00
20 lines
258 B
PHP
20 lines
258 B
PHP
--TEST--
|
|
Bug #72543.2 (different references behavior comparing to PHP 5)
|
|
--FILE--
|
|
<?php
|
|
$arr = [];
|
|
$arr[0] = null;
|
|
$ref =& $arr[0];
|
|
unset($ref);
|
|
$arr[0][$arr[0]] = null;
|
|
var_dump($arr);
|
|
?>
|
|
--EXPECT--
|
|
array(1) {
|
|
[0]=>
|
|
array(1) {
|
|
[""]=>
|
|
NULL
|
|
}
|
|
}
|