mirror of
https://github.com/php/php-src.git
synced 2026-03-24 00:02:20 +01:00
19 lines
210 B
PHP
19 lines
210 B
PHP
--TEST--
|
|
GH-19839: Incorrect HASH_FLAG_HAS_EMPTY_IND flag on userland array
|
|
--FILE--
|
|
<?php
|
|
|
|
const X = 'x';
|
|
|
|
$x = null;
|
|
unset(${X});
|
|
|
|
$a = $GLOBALS;
|
|
sort($a);
|
|
serialize($a);
|
|
|
|
?>
|
|
===DONE===
|
|
--EXPECT--
|
|
===DONE===
|