Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
タイムゾーンintをstring(etc: Europe/Stockholm)?
int
string
Europe/Stockholm)
私はFacebook の PHP APIを使用しています["timezone"] => int(2)。それをどのように解析すると思いますか?
["timezone"] => int(2)
を使用してタイムゾーン名を取得できますtimezone_name_from_abbr("", $value*3600, false);。$valueは、Facebook から取得するタイムゾーン オフセットです。
timezone_name_from_abbr("", $value*3600, false);
$value
minazさん、ありがとうございます。