php-src/ext/standard/tests/time/bug38524.phpt

32 lines
512 B
Plaintext
Raw Normal View History

--TEST--
Bug #38524 (strptime() does not initialize the internal date storage structure)
2007-04-18 14:51:47 +00:00
--SKIPIF--
<?php if (!function_exists('strptime')) echo "SKIP"; ?>
--FILE--
<?php
var_dump(strptime('2006-08-20', '%Y-%m-%d'));
?>
===DONE===
2006-08-24 11:27:06 +00:00
--EXPECTF--
2006-08-28 19:52:01 +00:00
array(9) {
[u"tm_sec"]=>
int(0)
[u"tm_min"]=>
int(0)
[u"tm_hour"]=>
int(0)
[u"tm_mday"]=>
int(20)
[u"tm_mon"]=>
int(7)
[u"tm_year"]=>
int(106)
[u"tm_wday"]=>
int(0)
[u"tm_yday"]=>
int(231)
[u"unparsed"]=>
2006-12-27 19:17:02 +00:00
unicode(0) ""
2006-08-28 19:52:01 +00:00
}
===DONE===