|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2018-03-21 13:00 UTC] cmb@php.net
-Package: date_time
+Package: Date/time related
[2018-03-21 13:00 UTC] cmb@php.net
[2018-03-21 13:58 UTC] spam2 at rhsoft dot net
[2021-04-06 18:31 UTC] derick@php.net
-Status: Open
+Status: Not a bug
[2021-04-06 18:31 UTC] derick@php.net
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Nov 05 19:00:01 2025 UTC |
Description: ------------ Error in reading the date in the function date_create_from_format Test script: --------------- <? $date = date_create_from_format("D, d M Y H:i:s O", "Tue, 20 Mar 2018 01:38:22 GMT"); echo date_format($date, 'Y-m-d'); //result 2018-03-20 $date = date_create_from_format("D, d M Y H:i:s O", "Tue, 21 Mar 2018 01:38:22 GMT"); echo date_format($date, 'Y-m-d'); //result 2018-03-27 27? Why?