|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2017-01-12 21:08 UTC] heiglandreas@php.net
-Status: Open
+Status: Not a bug
[2017-01-12 21:08 UTC] heiglandreas@php.net
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Dec 15 08:00:01 2025 UTC |
Description: ------------ some timestamps returns a negative value but should return false according to the valid formats. Test script: --------------- <?php // valid timestamp for 2011-10-26 var_dump(strtotime(1319580000)); // returns int(-62143152563) // but should return false Expected result: ---------------- bool(false) Actual result: -------------- int(-62143152563)