Copyright © tutorialspoint.com
| bool date_default_timezone_set ( string $timezone_identifier ) |
Sets the default timezone used by all date/time functions in a script.
| Parameter | Description |
|---|---|
| timezone_identifier | A valid timezone string |
Returns FALSE if the timezone_identifier isn't valid, or TRUE otherwise.
Following is the usage of this function:
<?php
echo "Old time zone is ". date_default_timezone_get();
$timeZone = 'America/Costa_Rica';
if( date_default_timezone_set( $timeZone) ){
# Now get this time zone.
echo "New time zone is ". date_default_timezone_get();
}
?>
|
This will produce following result:
Old time zone is America/Denver New time zone is America/Costa_Rica |
Copyright © tutorialspoint.com