bug66721.phpt 591 B

12345678910111213141516
  1. --TEST--
  2. Test for bug #66721: __wakeup of DateTime segfaults when invalid object data is supplied
  3. --CREDITS--
  4. Boro 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";}';
  8. var_dump(unserialize($y));
  9. ?>
  10. --EXPECTF--
  11. Fatal error: Uncaught Error: Invalid serialization data for DateTime object in %sbug66721.php:%d
  12. Stack 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