|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2010-07-18 20:21 UTC] felipe@php.net
-Status: Open
+Status: Assigned
-Assigned To:
+Assigned To: derick
[2010-08-30 18:48 UTC] derick@php.net
[2010-08-30 18:48 UTC] derick@php.net
-Status: Assigned
+Status: Closed
[2010-08-30 18:48 UTC] derick@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Nov 19 16:00:01 2025 UTC |
Description: ------------ Try to get Midnight of the first Weekday of a Weeknumber of a specific year: $from = new DateTime(); $from->setTime(0, 0, 0); $from->setISODate(2010, 28, 1); //Montag der 28ten Woche 2010 echo $from->format('d.m.Y H:i'); //A echo $from->getTimestamp(); //B echo date('Y-m-d H:i', $from->getTimestamp()); //C The result is as expected, after adding an interval of 0 Days: $from->add(new DateInterval('P0D')); Expected result: ---------------- 12.07.2010 1278885600 12.07.2010 00:00 Actual result: -------------- 12.07.2010 1291849200 29.05.2011 00:00