mirror of
https://github.com/php/php-src.git
synced 2024-12-03 06:44:07 +08:00
20 lines
354 B
PHP
20 lines
354 B
PHP
--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) {
|
|
["date"]=>
|
|
%string|unicode%(%d) "%s"
|
|
["timezone_type"]=>
|
|
int(%d)
|
|
["timezone"]=>
|
|
%string|unicode%(%d) "America/Sao_Paulo"
|
|
}
|