Changing your default timezone via PHP

You can change the time zone being displayed with a PHP script.

Here is sample code:

<?php
putenv("TZ=Europe/London");
?>

View a complete list of available timezones at http://php.net/manual/en/timezones.php

  • 1 Users Found This Useful
Was this answer helpful?

Related Articles

How do I view the php info page?

Create a page name phpinfo.php and insert the below code into it. Pull this page up in your...

How do I redirect visitors to another page using PHP?

Redirection in PHP can be done using the header() function. To setup a simple redirect, create...

Access Forbidden: suPHP File Permission

Access Forbidden. You don't have permission to access / on this server. Please set the following...

Hide PHP Strict Standards Errors

To hide the PHP Strict Standards Errors, create a php.ini file in your public_html directory and...