|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2014-03-10 20:03 UTC] shrimpwagon at gmail dot com
Description:
------------
Date 'I' always returns 0 and doesn't properly indicate when it is daylight savings.
Test script:
---------------
return date('I', strtotime('2014-03-01')); // Correct, returns 0
return date('I', strtotime('2014-03-10')); // Not Correct, returns 0
Expected result:
----------------
Should return 1 when date is in daylight savings
Actual result:
--------------
Always returns 0
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Oct 28 14:00:01 2025 UTC |
Thank you for this bug report. To properly diagnose the problem, we need a short but complete example script to be able to reproduce this bug ourselves. A proper reproducing script starts with <?php and ends with ?>, is max. 10-20 lines long and does not require any external resources such as databases, etc. If the script requires a database to demonstrate the issue, please make sure it creates all necessary tables, stored procedures etc. Please avoid embedding huge scripts into the report. Works for me. I'm using tzdata 2013g - what about you? Does a date in, say, June work correctly? $ php -r 'var_dump(date("I",strtotime("2014-03-01")));' string(1) "0" $ php -r 'var_dump(date("I",strtotime("2014-03-10")));' string(1) "1"