php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #35201 date_default_timezone_set() doesn't work with date(), gmdate()
Submitted: 2005-11-12 17:57 UTC Modified: 2005-11-12 19:10 UTC
From: lunter at interia dot pl Assigned:
Status: Not a bug Package: Date/time related
PHP Version: 5.1.0RC4 OS: winXP
Private report: No CVE-ID: None
 [2005-11-12 17:57 UTC] lunter at interia dot pl
Description:
------------
date_default_timezone_set() doesn't work with date(), gmdate()

Reproduce code:
---------------
<?
 date_default_timezone_set('Europe/Warsaw');
 print(date('U').'<br>');
 print(gmdate('U').'<br>');
?>

Expected result:
----------------
Different values.

Actual result:
--------------
The same values.

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2005-11-12 18:29 UTC] johannes@php.net
Thank you for taking the time to write to us, but this is not
a bug. Please double-check the documentation available at
http://www.php.net/manual/ and the instructions on how to report
a bug at http://bugs.php.net/how-to-report.php

time() returns seconds from 1.1.1970 00:00 GMT - that's  
for good reasons timezone independet  
 [2005-11-12 18:30 UTC] johannes@php.net
Copy&Paste error, meant date("U") not time() here... 
 [2005-11-12 19:10 UTC] lunter at interia dot pl
Sorry, I make a mistake.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Sun May 05 16:01:30 2024 UTC