|
|
|
@ -4,9 +4,9 @@ Bug #35414 (strtotime() no longer works with ordinal suffix) |
|
|
|
<?php |
|
|
|
date_default_timezone_set("UTC"); |
|
|
|
|
|
|
|
echo date(DATE_ISO8601, strtotime("Sat 26th Nov 2005 18:18")) . "\n"; |
|
|
|
echo date(DATE_ISO8601, strtotime("Dec. 4th, 2005")) . "\n"; |
|
|
|
echo date(DATE_ISO8601, strtotime("December 4th, 2005")) . "\n"; |
|
|
|
echo date(date::ISO8601, strtotime("Sat 26th Nov 2005 18:18")) . "\n"; |
|
|
|
echo date(date::ISO8601, strtotime("Dec. 4th, 2005")) . "\n"; |
|
|
|
echo date(date::ISO8601, strtotime("December 4th, 2005")) . "\n"; |
|
|
|
?> |
|
|
|
--EXPECT-- |
|
|
|
2004-12-26T18:18:00+0000 |
|
|
|
|