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