Change timezone of PHP
Posted on February 9, 2008
Filed Under PHP |
If you wanna change the timezone of a PHP script, set the timezone environmental variable in your PHP code as simple as shown bellow.
1 2 3 | <? putenv("TZ=Asia/Colombo"); ?> |
Posted on February 9, 2008
Filed Under PHP |
If you wanna change the timezone of a PHP script, set the timezone environmental variable in your PHP code as simple as shown bellow.
1 2 3 | <? putenv("TZ=Asia/Colombo"); ?> |
Leave a Reply