|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2018-08-17 14:24 UTC] cmb@php.net
-Status: Open
+Status: Not a bug
-Assigned To:
+Assigned To: cmb
[2018-08-17 14:24 UTC] cmb@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Fri Dec 12 23:00:01 2025 UTC |
Description: ------------ The date() function returns the date YYYY-10-28 two times if listed. See example. Test script: --------------- for($i=strtotime("2018-07-01"); $i<strtotime("2018-12-01"); $i+=86400) { $list[] = date('d.m.Y', $i); } dump($list); //look for 2018-10-28