10

我正在使用 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 使用哪种格式?

4

1 回答 1

19

Instagram 使用的是 unix 时间戳,因此在您的情况下:

echo date('M j, Y', $created_on);
于 2013-10-25T06:08:19.927 回答