我使用以下代码显示youtube api数据
<?php
$text=$_REQUEST['text'];
$url = "https://gdata.youtube.com/feeds/api/videos?q=".$text."&v=2&alt=jsonc";
$get = file_get_contents($url);
$decode = json_decode($get, TRUE);
var_dump($decode);
?>
结果是获取$text='hello'
并获取$text="hello hd"
请告诉我如何获取任何关键字的数据