mirror of
https://github.com/php/php-src.git
synced 2024-11-23 18:04:36 +08:00
12 lines
177 B
PHP
12 lines
177 B
PHP
--TEST--
|
|
Bug #70187 (Notice: unserialize(): Unexpected end of serialized data)
|
|
--FILE--
|
|
<?php
|
|
$a = 1;
|
|
unset($a);
|
|
unserialize(serialize($GLOBALS));
|
|
echo "ok\n";
|
|
?>
|
|
--EXPECT--
|
|
ok
|