我正在使用插件來創建twitter feed中的wordpress帖子,並且我正在嘗試對其進行編輯,以便發佈的時間與推文時間相同,而不是cron的運行時間。發佈日期date_create_from_format()
不幸的是,twitter的API返回一個已經格式化的日期字符串,而不是時間戳,所以我不得不解析它,然後以wordpress友好的格式保存它。
// Wed Jun 06 20:07:10 +0000 2012 (Twitter formatted date example)
// 2014-03-10 18:30:26 (Wordpress formatted date example)
$tweet_date = $tweet->created_at;
$tweet_date = date_create_from_format("D M d h:i:s O Y", $tweet_date);
$tweet_date = date("Y-m-d h:i:s", $tweet_date);
不幸的是,我從這個Unix Epoch(1970年1月1日)得到的結果。
我知道我必須錯過一個步驟,但我不知道在哪裏。
我沒有注意到這一點。 +1超快速和演示。 –
完美。由於早期的迴應,我已經接近工作了,但仍然掛在我不正確的'h'上。謝謝! – Brownski