|
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-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Dec 18 09:00:01 2025 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.