php-src/ext/date/tests/bug46108.phpt

20 lines
369 B
Plaintext
Raw Normal View History

2009-04-08 00:29:55 +00:00
--TEST--
Bug #46108 (DateTime - Memory leak when unserializing)
--FILE--
<?php
date_default_timezone_set('America/Sao_Paulo');
var_dump(unserialize(serialize(new Datetime)));
?>
--EXPECTF--
object(DateTime)#%d (3) {
[%u|b%"date"]=>
%string|unicode%(%d) "%s"
[%u|b%"timezone_type"]=>
int(%d)
[%u|b%"timezone"]=>
%string|unicode%(%d) "America/Sao_Paulo"
}