Created
January 25, 2012 21:28
-
-
Save glennpratt/1678831 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| php > $tz = new DateTimeZone('America/Chicago'); | |
| php > var_dump($tz->getLocation()); | |
| array(4) { | |
| ["country_code"]=> | |
| string(2) "US" | |
| ["latitude"]=> | |
| float(41.85) | |
| ["longitude"]=> | |
| float(-87.65) | |
| ["comments"]=> | |
| string(12) "Central Time" | |
| } | |
| php > |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Note the string `$arr['comments'].