php-src/ext/date/tests/bug33578.phpt

14 lines
308 B
Plaintext
Raw Normal View History

2005-07-05 21:38:37 +00:00
--TEST--
Bug #33578 (strtotime() doesn't parse "11 Oct" format")
--FILE--
<?php
date_default_timezone_set("UTC");
echo date('m/d/Y', strtotime('Oct 11')), "\n";
echo date('m/d/Y', strtotime('11 Oct')), "\n";
echo date('m/d/Y', strtotime('11 Oct 2005')), "\n";
?>
--EXPECTF--
10/11/%d
10/11/%d
10/11/2005