Linux SRV-16 6.18.44-paas #1 SMP PREEMPT_DYNAMIC Thu Aug 13 10:08:12 UTC 2026 x86_64
/
proc
/
self
/
root
/
opt
/
php-7.4
/
share
/
test
/
mongodb
/
tests
/
bson
/
//proc/self/root/opt/php-7.4/share/test/mongodb/tests/bson/bug0631.phpt
--TEST-- PHPC-631: UTCDateTime::toDateTime() may return object that cannot be serialized --INI-- date.timezone=UTC --FILE-- <?php require_once __DIR__ . '/../utils/basic.inc'; $utcdatetime = new MongoDB\BSON\UTCDateTime('1466540755123'); $datetime = $utcdatetime->toDateTime(); $s = serialize($datetime); var_dump($datetime); echo "\n", $s, "\n\n"; var_dump(unserialize($s)); ?> ===DONE=== <?php exit(0); ?> --EXPECTF-- object(DateTime)#%d (%d) { ["date"]=> string(26) "2016-06-21 20:25:55.123000" ["timezone_type"]=> int(1) ["timezone"]=> string(6) "+00:00" } O:8:"DateTime":3:{s:4:"date";s:26:"2016-06-21 20:25:55.123000";s:13:"timezone_type";i:1;s:8:"timezone";s:6:"+00:00";} object(DateTime)#%d (%d) { ["date"]=> string(26) "2016-06-21 20:25:55.123000" ["timezone_type"]=> int(1) ["timezone"]=> string(6) "+00:00" } ===DONE===