|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2015-08-31 08:11 UTC] xjiujiu at foxmail dot com
[2015-08-31 08:15 UTC] requinix@php.net
-Status: Open
+Status: Not a bug
[2015-08-31 08:15 UTC] requinix@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Dec 18 16:00:01 2025 UTC |
Description: ------------ strtotime("2015-08-31 11:18:07") -> int(1440991087) date(1440991087) -> string(19) "2015-08-31 11:08:07" strtotime('2015-08-31 11:08:07') -> int(1440990487) Test script: --------------- $time = strtotime("2015-08-31 11:18:07"); var_dump($time); echo date('Y-m-d H:m:s', $time); $sTime = strtotime('2015-08-31 11:08:07'); var_dump($sTime); echo date('Y-m-d H:m:s', $sTime); Expected result: ---------------- 2015-08-31 11:08:07 Actual result: -------------- 2015-08-31 11:18:07