mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
13 lines
241 B
PHP
13 lines
241 B
PHP
--TEST--
|
|
ArrayObject: test that you can unserialize a empty string
|
|
--CREDITS--
|
|
Havard Eide <nucleuz@gmail.com>
|
|
#PHPTestFest2009 Norway 2009-06-09 \o/
|
|
--FILE--
|
|
<?php
|
|
$a = new ArrayObject(array());
|
|
$a->unserialize("");
|
|
?>
|
|
Done
|
|
--EXPECT--
|
|
Done
|