我制作了一个简单的代码,以 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 Object ( [$t] => 视频标题 [type] => text )
我应该怎么得到这个$t
?