- Make sure the already set "TZ" environment doesn't mess up the tests.

This commit is contained in:
Derick Rethans 2005-06-29 19:00:35 +00:00
parent 21e17d7ec0
commit aa202a7e93
2 changed files with 2 additions and 0 deletions

View File

@ -4,6 +4,7 @@ date.timezone setting [1]
date.timezone=GMT
--FILE--
<?php
putenv('TZ'); // clean TZ so that it doesn't bypass the ini option
echo strtotime("2005-06-18 22:15:44");
?>
--EXPECT--

View File

@ -4,6 +4,7 @@ date.timezone setting [2]
date.timezone=Europe/Oslo
--FILE--
<?php
putenv('TZ'); // clean TZ so that it doesn't bypass the ini option
echo strtotime("2005-06-18 22:15:44");
?>
--EXPECT--