วันศุกร์ที่ 12 ตุลาคม พ.ศ. 2550

Change TimeZone in hosting

The Servers have been set up with Time Zone GMT. You can modify your scripts to use EST or any other timezone you need by the following methods :

1) Using the function "putenv" in php scripts :
==============================================
To convert Time Zone using putenv

&l?
echo "Original Time: ". date("h:i:s")."\n";
putenv("TZ=US/Eastern");
echo "New Time: ". date("h:i:s")."\n";
?&g
==============================================

2) By putting the following in the .htaccess file in your main public_html folder :

==============================================
SetEnv TZ "US/Eastern"
==============================================

ไม่มีความคิดเห็น: