|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2012-10-05 19:04 UTC] helgeson dot b at gmail dot com
Description: ------------ --- From manual page: http://www.php.net/function.strtotime#refsect1- function.strtotime-changelog --- requesting a given occurrence of a given weekday in a month where that weekday was the first day of the month would incorrectly add one week to the returned timestamp. Although this was reported resolved as of PHP 5.2.7, it still exists in PHP 5.3.3. Maybe update the documentation to reflect the version the bug was actually corrected in? Test script: --------------- $x = strtotime('Second Monday October 2012'); print date('Y-m-d', $x); Expected result: ---------------- 2012-10-8 Actual result: -------------- 2012-10-15 PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Oct 28 17:00:02 2025 UTC |
I've found something that seems to be related? running strtotime on a string like ("2nd monday") adds a week to the date on months where the requested week day is the 1st day of the month. Like, will also happen on ("1st Saturday") when the month starts on a Saturday.