|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2006-04-19 19:33 UTC] derick@php.net
[2006-04-19 19:36 UTC] derick@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2026 The PHP GroupAll rights reserved. |
Last updated: Wed Apr 01 14:00:02 2026 UTC |
Description: ------------ Using mktime to make date 2006-10-15 00:00:00 , produce 2006-10-15 01:00:00 Reproduce code: --------------- <? $date = mktime(0,0,0,10,15,2006); echo date("Y-m-d H:i:s",$date); ?> Expected result: ---------------- 2006-10-15 00:00:00 Actual result: -------------- 2006-10-15 01:00:00