|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2003-04-01 02:45 UTC] rasmus@php.net
[2003-04-01 02:57 UTC] przemek at cert dot pl
[2003-04-01 06:10 UTC] sniper@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Dec 16 16:00:01 2025 UTC |
$date_time=strtotime("20030330 0100"); echo "date_time reads: $date_time\n"; $date_time=strtotime("+1 hour", date_time); echo "date_time reads: $date_time\n"; produces output: date_time reads: 1048982400 date_time reads: 3600 I must say I wouldn't mind getting "2003-03-30 03:00", but "1970-01-01 00:00" is more than surprising...