|   | php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login | 
| 
 PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits              [2006-04-08 12:54 UTC] derick@php.net
  [2006-04-11 18:04 UTC] derick@php.net
 | |||||||||||||||||||||||||||
|  Copyright © 2001-2025 The PHP Group All rights reserved. | Last updated: Fri Oct 31 01:00:01 2025 UTC | 
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