|
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-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Dec 03 17:00:01 2025 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)