ID: 34676
Updated by: [EMAIL PROTECTED]
-Summary: strtotime("midnight") fails
Reported By: rajiv at alum dot mit dot edu
-Status: Open
+Status: Assigned
-Bug Type: Date/time related
+Bug Type: Feature/Change Request
-Operating System: linux, os x
+Operating System: *
-PHP Version: 4.4.0
+PHP Version: 5CVS, 4CVS (2005-09-29)
-Assigned To:
+Assigned To: derick
New Comment:
Reclassified as feature request and assigned to Derick so he can add in
PHP 5.1.x. :)
Previous Comments:
------------------------------------------------------------------------
[2005-09-29 06:20:04] rajiv at alum dot mit dot edu
Description:
------------
strtotime() should be able to parse "midnight" and "noon".
Reproduce code:
---------------
echo strtotime("midnight");
echo strtotime("noon");
Expected result:
----------------
echo strtotime("midnight");
should print the time stamp for the next midnight
(midnight tomorrow).
echo strtotime("noon");
should print the time stamp for the next noon
(noon today/tomorrow depending on the current time).
echo strtotime("12:00 am");
echo strtotime("12 am");
echo strtotime("12:00 pm");
echo strtotime("12 pm");
all do the correct things.
Actual result:
--------------
echo strtotime("midnight");
returns -1.
echo strtotime("noon");
returns -1.
------------------------------------------------------------------------
--
Edit this bug report at http://bugs.php.net/?id=34676&edit=1