|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2005-11-12 18:28 UTC] johannes@php.net
[2005-11-12 19:09 UTC] lunter at interia dot pl
|
|||||||||||||||||||||||||||
Copyright © 2001-2026 The PHP GroupAll rights reserved. |
Last updated: Wed Mar 18 22:00:01 2026 UTC |
Description: ------------ date_default_timezone_set() doesn't work with time() Reproduce code: --------------- <? date_default_timezone_set('Europe/London'); print(time().'<br>'); date_default_timezone_set('Europe/Warsaw'); print(time().'<br>'); ?> Expected result: ---------------- Different values. Actual result: -------------- The same values.