|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2010-02-11 12:13 UTC] johannes@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2026 The PHP GroupAll rights reserved. |
Last updated: Tue Feb 10 21:00:02 2026 UTC |
Description: ------------ strtotime accepts "2010-02-30" as a valid date and converts it to timestamp Reproduce code: --------------- <?php var_dump(strtotime('2010-02-30')); ?> Expected result: ---------------- bool(false) Actual result: -------------- int(1267480800)