gpt4 book ai didi

php - 像 facebook 一样将 facebook 时区转换为我的本地时区

转载 作者:行者123 更新时间:2023-11-30 18:25:39 25 4
gpt4 key购买 nike

我正在使用 facebook api 并将 created_time 作为2012-06-06T16:20:43+0000

我已经在 about 发布了这个状态21:57(标准时间)

我得到 2012-06-06T16:20:43+0000

任何帮助将不胜感激,以便在我发布的同时获得准确的更新。

最佳答案

您可以使用此代码转换任何时区:

$timestamp = strtotime("2012-06-06T16:20:43+0000");   //here you put your string with the tie

$dtime = new DateTime();
$dtime->setTimestamp($timestamp);
$localtz = new DateTimeZone("Asia/Calcutta"); //choose the correct PHP timezone
$dtime->setTimeZone($localtz); //we apply the timezone

$stringtime = $dtime->format('Y-m-d\TH:i:sO'); //here you return the time in the same format as facebook
$unixtime = $dtime->format('U'); //here u get the unix timestamp format of the same string

print $stringtime;

关于php - 像 facebook 一样将 facebook 时区转换为我的本地时区,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10918272/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com