php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #6972 date("Z") fails after putenv("TZ=<val>"), works with a getenv("TZ") between
Submitted: 2000-10-02 02:14 UTC Modified: 2001-01-09 04:08 UTC
From: jdm at anteil dot com Assigned:
Status: Closed Package: Date/time related
PHP Version: 4.0.2 OS: Linux (RH6.2)
Private report: No CVE-ID: None
Welcome back! If you're the original bug submitter, here's where you can edit the bug or add additional notes.
If this is not your bug, you can add a comment by following this link.
If this is your bug, but you forgot your password, you can retrieve your password here.
Password:
Status:
Package:
Bug Type:
Summary:
From: jdm at anteil dot com
New email:
PHP Version: OS:

 

 [2000-10-02 02:14 UTC] jdm at anteil dot com
Script to produce the problem:
<?
 
 $TZ=":America/New_York";
 
 $oldTZ = getenv("TZ");
 putenv("TZ=$TZ");
 
 $y = date("Z");
 $x = date("Z");
 
 echo "A: TZ= $TZ: GMTOFFSET = $y <BR>";
 echo "B: TZ= $TZ: GMTOFFSET = $x <BR>";
 putenv("TZ=$oldTZ");
 
 $oldTZ = getenv("TZ");
 putenv("TZ=$TZ");
 
 $y = date("Z");
 $x = date("Z");
 
 echo "A: TZ= $TZ: GMTOFFSET = $y <BR>";
 echo "B: TZ= $TZ: GMTOFFSET = $x <BR>";
 putenv("TZ=$oldTZ");
 
?>

If you swap the lines (at the top of the script):
 $oldTZ = getenv("TZ");
 putenv("TZ=$TZ");
to:
 putenv("TZ=$TZ");
 $oldTZ = getenv("TZ");
the script works fine.

My installation is RH6.2/apache 1.3.12/php4.0.2/mysql 3.22.23.  I also have a 
database logging and replication layer as a module in php, but I had someone
on the PHP GENERAL mailing list verify the bug on their setup.  This appears 
to be a glitch in environment memory handling, but I can't be sure.

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2001-01-09 04:08 UTC] sniper@php.net
This is fixed in CVS now.

--Jani
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Tue Apr 23 06:01:30 2024 UTC