PHP timezone_location_get() Function
Example
Return location information for the given timezone:
<?php
$tz=timezone_open("Asia/Taipei");
print_r(timezone_location_get($tz));
?>
Try it Yourself »
Definition and Usage
The timezone_location_get() returns location information for the given timezone.
Syntax
timezone_location_get(object)
Parameter Values
Parameter | Description |
---|---|
object | Required. Specifies a DateTimeZone object returned by timezone_open() |
Technical Details
Return Value: | Returns an array that contains location information for the timezone |
---|---|
PHP Version: | 5.3+ |
❮ PHP Date/Time Reference