1--TEST-- 2Test for bug #66721: __wakeup of DateTime segfaults when invalid object data is supplied 3--CREDITS-- 4Boro Sitnikovski <buritomath@yahoo.com> 5--FILE-- 6<?php 7$y = 'O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-15 02:00:51";s:13:"timezone_type";i:3;s:8:"timezone";s:10:"1234567890";}'; 8var_dump(unserialize($y)); 9?> 10--EXPECTF-- 11Fatal error: Uncaught Error: Invalid serialization data for DateTime object in %sbug66721.php:%d 12Stack trace: 13#0 [internal function]: DateTime->__wakeup() 14#1 %sbug66721.php(%d): unserialize('O:8:"DateTime":...') 15#2 {main} 16 thrown in %sbug66721.php on line %d 17