|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2018-11-26 08:53 UTC] thomas dot wanka at gmx dot net
Description:
------------
The result if compare operator on two DateInterval objects is unpredictable.
See code in the "test script" section:
the result of the if() statement depends on the code before. If, for instance, you print the DateInterval, the internal structure seems to change, and the result is correct. Otherwise, the result is not correct. The system should output an error or a warning if the compare operater is not fully implemented.
Test script:
---------------
<?php
$old = DateTime::createFromFormat('Y-m-d H:i:s', '2018-11-26 09:29:00');
// constant here for demo only, i read datetime field from database
$now = new DateTime('now',new DateTimeZone('Europe/Berlin'));
$maxdiff = new DateInterval('PT30M');
$actualDiff = $now->diff($old);
// echo "<pre>"; print_r($now); echo "</pre><br />";
// echo "<pre>"; print_r($maxdiff ); echo "</pre><br />";
if ($actualDiff>$maxDiff) echo "time is up" else echo "just wait";
?>
Expected result:
----------------
throw an error if an nvalid operator ist used
minimum request: add information about this behauviour into documentation of DateInterval
Actual result:
--------------
operator is performed, result is unpredictable
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sat Dec 13 08:00:01 2025 UTC |
Where did you read that > could be used to compare objects in the first place? What does happen is that if you do a debugging dump of a DateTime object it creates a bunch of additional properties. <?php $old = DateTime::createFromFormat('Y-m-d H:i:s', '2018-11-26 09:29:00'); $now = new DateTime('now',new DateTimeZone('Europe/Berlin')); $actualDiff = $now->diff($old); echo "Weekday: ", $actualDiff->weekday; echo "\n"; print_r($actualDiff); echo "\n"; echo "Weekday: ", $actualDiff->weekday;