|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2005-11-27 16:28 UTC] tony2001@php.net
[2005-11-29 21:25 UTC] iliaa@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Nov 06 23:00:02 2025 UTC |
Description: ------------ idate('Z') doesn't reflect zone settings by date_default_timezone_set(). That's wrong, isn't it? Reproduce code: --------------- date_default_timezone_set("UTC"); $time = mktime(1,1,1,1,1,2005); echo idate('Z', $time); Expected result: ---------------- 0 Actual result: -------------- 3600 // my system setting is +1 GMT