|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2015-02-16 15:04 UTC] alex at gentle dot ro
[2020-12-09 14:17 UTC] cmb@php.net
-Status: Open
+Status: Feedback
-Assigned To:
+Assigned To: cmb
[2020-12-09 14:17 UTC] cmb@php.net
[2020-12-20 04:22 UTC] pecl-dev at lists dot php dot net
|
|||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Nov 04 21:00:01 2025 UTC |
Description: ------------ Updated PECL timezonedb to 2015.1 Issue is Pacific/Samoa is 1 hour behind. Samoa does not use daylight savings, this may be the cause. Test script: --------------- <?php date_default_timezone_set('Pacific/Samoa'); ?> ?> <html> <head> <title>TimeZones!</title> </head> <body> <h1><?=date('g:i A', time())?></h1> <h3><?=date('l, F j, Y', time())?></h3> <h3>Timezone: <?=date_default_timezone_get()?></h3> </body> </html> Expected result: ---------------- GMT + 14:00 Actual result: -------------- GMT + 13:00