PHPとJSONでビデオyoutubeのタイトルを持つ簡単なコードを作成しましたが、今問題があります。
これが私のコードです:
<?php
$url = 'http://gdata.youtube.com/feeds/api/videos/';
$vid = $video['video_id'];
$end = '?format=5&alt=json';
$response = file_get_contents($url.$vid.$end);
$obj = json_decode($response);
?>
<?php print_r($obj->entry->title); ?>
私のprint_r
印刷物:
stdClass オブジェクト ( [$t] => ビデオのタイトル [タイプ] => テキスト )
どうすればこれを手に入れることができます$t
か?