From:             jerdonek at gmail dot com
Operating system: Mac OS X 10.3.9
PHP version:      5.1.2
PHP Bug Type:     Date/time related
Bug description:  strtotime fails before 13:00:00 with some time zones 
identifiers

Description:
------------
strtotime() returns no output when the time part of the 
date-time is between 00:00:00 and 13:00:00 and the time 
zone identifier is America/New_York for example.  The 
error does not occur for GMT for example.

Reproduce code:
---------------
echo strtotime("2006-05-12 13:00:01 America/New_York") . "<br>";
echo strtotime("2006-05-12 13:00:00 America/New_York") . "<br>";
echo strtotime("2006-05-12 12:59:59 America/New_York") . "<br>";
echo strtotime("2006-05-12 12:59:59 GMT") . "<br>";


Expected result:
----------------
1147453201
1147453200
1147453199
1147438799


Actual result:
--------------
1147453201
1147453200

1147438799


-- 
Edit bug report at http://bugs.php.net/?id=37017&edit=1
-- 
Try a CVS snapshot (PHP 4.4): 
http://bugs.php.net/fix.php?id=37017&r=trysnapshot44
Try a CVS snapshot (PHP 5.1): 
http://bugs.php.net/fix.php?id=37017&r=trysnapshot51
Try a CVS snapshot (PHP 6.0): 
http://bugs.php.net/fix.php?id=37017&r=trysnapshot60
Fixed in CVS:                 http://bugs.php.net/fix.php?id=37017&r=fixedcvs
Fixed in release:             
http://bugs.php.net/fix.php?id=37017&r=alreadyfixed
Need backtrace:               http://bugs.php.net/fix.php?id=37017&r=needtrace
Need Reproduce Script:        http://bugs.php.net/fix.php?id=37017&r=needscript
Try newer version:            http://bugs.php.net/fix.php?id=37017&r=oldversion
Not developer issue:          http://bugs.php.net/fix.php?id=37017&r=support
Expected behavior:            http://bugs.php.net/fix.php?id=37017&r=notwrong
Not enough info:              
http://bugs.php.net/fix.php?id=37017&r=notenoughinfo
Submitted twice:              
http://bugs.php.net/fix.php?id=37017&r=submittedtwice
register_globals:             http://bugs.php.net/fix.php?id=37017&r=globals
PHP 3 support discontinued:   http://bugs.php.net/fix.php?id=37017&r=php3
Daylight Savings:             http://bugs.php.net/fix.php?id=37017&r=dst
IIS Stability:                http://bugs.php.net/fix.php?id=37017&r=isapi
Install GNU Sed:              http://bugs.php.net/fix.php?id=37017&r=gnused
Floating point limitations:   http://bugs.php.net/fix.php?id=37017&r=float
No Zend Extensions:           http://bugs.php.net/fix.php?id=37017&r=nozend
MySQL Configuration Error:    http://bugs.php.net/fix.php?id=37017&r=mysqlcfg

Reply via email to