将Instagram的“created_time”键转换为实际日期

时间:2013-10-25 06:05:16

标签: php api instagram

我正在使用Instagram的API来获取已发布的给定个人资料的最新视频或照片。它运作良好,除了我似乎无法理解“created_time”值的含义。

$feed = file_get_contents("https://api.instagram.com/v1/users/".$id."/media/recent/?access_token=".$access_token."&count=1");
$feed = @json_decode($feed, true);
$created_on = $feed['data'][0]['created_time'];

在这种情况下,$created_on变量设置为1382576494。当我尝试做的时候,

echo date('M j, Y', strtotime($created_on));

我收到错误消息。 Instagram使用什么样的格式?

1 个答案:

答案 0 :(得分:20)

Instagram正在使用unix时间戳,所以在你的情况下:

echo date('M j, Y', $created_on);