|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2017-05-01 07:14 UTC] requinix@php.net
-Status: Open
+Status: Not a bug
-Package: *General Issues
+Package: Date/time related
[2017-05-01 07:14 UTC] requinix@php.net
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Oct 27 04:00:02 2025 UTC |
Description: ------------ An incorrect date string to int conversion in strtotime() with use the YYYY-MM-DD format Test script: --------------- echo strtotime('1996-12-01') // return 849387600, it's OK echo strtotime('1996-11-31') // return 849387600, it's FAIL, this date not exists, need return false