如何从以下列表中提取示例标题值? http://pastebin.com/11AiRCJh但是使用PHP,所以我可以将它保存到变量$ newTitle中。例如。
以下是一些代码:
$searchResultLink = "https://www.googleapis.com/youtube/v3/search?part=snippet&q=$q&key=$key&maxResults=25";
$searchResultKod = file_get_contents($searchResultLink);
//echo $searchResultKod;
$json = json_decode($searchResultKod);
$title = $json->items[0]->snippet->title;
echo $title;
答案 0 :(得分:2)
它采用JSON格式,因此在该字符串上使用json_decode()
。
$json = json_decode($your_string);
$title = $json->items[0]->snippet->title;
这将为您提供items
列表中第一项的标题。
假设您已经拥有该字符串,如果该信息位于远程服务器/ api上,则您需要使用类似file_get_contents()
的内容来获取该字符串。