チェックインを表示できるアプリを作成しています。いくつかのデータを表示できましたが、日付を表示できません。API ドキュメントを読んだところ、次のことがわかりました。
id: "5107ed69704379518de3cb5f"
createdAt: 1359474025
type: "checkin"
timeZoneOffset: -420
user: {
id: "46466115"
firstName: "Abraham"
lastName: "Gonzalez"
gender: "male"
relationship: "self"
photo: {
prefix: "https://irs3.4sqi.net/img/user/"
suffix: "/JB543SD4TURRQR2A.jpg"
}
実装しようとしましたが、数字の文字列が表示され、これらの数字の解釈方法を知りたいです。いくつかの調査を行ったところ、数字が秒であることがわかりました( http://www.epochconverter.com/ )、しかし、私はそれらを解釈する方法がわかりません:(
それは私のphpコードです:
$check_ins =json_decode(file_get_contents("https://api.foursquare.com/v2/users/self/checkins?oauth_token={$_SESSION['access_token']}"));
foreach($check_ins->response->checkins->items as $check_in):
echo"
<b>Lugar</b>: ".$check_in->venue->name."
<br><b>Pais</b>: ".$check_in->venue->location->country."
<br><b>Ciudad</b>: ".$check_in->venue->location->city."
<br><b>Estado</b>: ".$check_in->venue->location->state."
<b><br>Dirección</b>: ".$check_in->venue->location->address."
**<b><br>Dirección</b>: ".$check_in->createdAt."**
<br><br>";
endforeach;
それで、私の質問は次のとおりです。日付を表示する方法/またはフォースクエアが提供する数字をどのように解釈できますか?