How do you convert a timezone from int to string (etc: Europe/Stockholm)?
int
string
Europe/Stockholm)
I\'m using Facebooks PHP api and that returns
You can get the timezone name by using timezone_name_from_abbr("", $value*3600, false);. $value is the timezone offset you get from Facebook.
timezone_name_from_abbr("", $value*3600, false);
$value
Thanks to minaz.