朋友们,您好我想使用php
在屏幕上回显(打印)YouTube视频ID。
到目前为止这是我的代码。任何人都可以告诉我如何只显示视频ID谢谢。
<?php
$data = file_get_contents("https://www.googleapis.com/youtube/v3/search?maxResults=5&part=snippet&key=API_KEY");
$array = json_decode ($data,true);
print_r ($array);
答案 0 :(得分:0)
我已经为您调整了脚本,以便它将检索视频ID。
经过测试和处理的代码段
<?php
$apiKey = "enter-your-apikey-here";
$data = file_get_contents("https://www.googleapis.com/youtube/v3/search?maxResults=5&part=snippet&key=".$apiKey);
$array = json_decode ($data,true);
foreach($array['items'] as $data) {
var_dump($data['id']['videoId']);
}