0
我正在使用這裏找到的twitteroauth庫:twitteroauth。其中一種連接方法是檢索速率限制。它包含的返回值之一是:[reset_time_in_seconds] => 1365270026
。我如何將其轉換爲PHP日期時間值?PHP Twitteroauth reset_time_in_seconds轉換爲日期時間
我正在使用這裏找到的twitteroauth庫:twitteroauth。其中一種連接方法是檢索速率限制。它包含的返回值之一是:[reset_time_in_seconds] => 1365270026
。我如何將其轉換爲PHP日期時間值?PHP Twitteroauth reset_time_in_seconds轉換爲日期時間
看起來像Unix時間戳,所以你可以使用DateTime::setTimestamp()
:
$date = new DateTime;
$date->setTimestamp(1365270026);
然後,您可以格式化你想要的東西:
echo $date->format('F jS Y, h:i:sA');