1
0
mirror of https://github.com/php/php-src.git synced 2026-03-27 01:32:22 +01:00

- Cosmetics for test case for #48678.

This commit is contained in:
Derick Rethans
2011-12-06 06:00:45 +00:00
parent 8698b73942
commit 855ef08020

View File

@@ -1,8 +1,8 @@
--TEST--
Bug #48678 DateInterval segfaults when unserialising
Bug #48678: DateInterval segfaults when unserialising
--FILE--
<?php
$x = new dateinterval("P3Y6M4DT12H30M5S");
$x = new DateInterval("P3Y6M4DT12H30M5S");
print_r($x);
$y = unserialize(serialize($x));
print_r($y);