我的数据库中存储了 YouTube 视频 ID。我正在尝试输出仅无效的 ID。我正在使用get_headers / oembed,它允许我检查 YouTube 上是否存在视频。然后我循环遍历 ID。这目前正在工作,但它显示了我表中的所有 YouTube ID,然后将文本“无效”添加到无效的那些。我只需要显示那些无效的 - 没有别的!
如果有人不介意的话,我需要一些帮助。我真的很感激。
代码:
$servername = "localhost";
$username = "";
$password = "";
$dbname = "";
// Create connection
$conn = new mysqli($servername, $username, $password, $dbname);
// Check connection
if ($conn->connect_error) {
die("Connection failed: " . $conn->connect_error);
}
$sql = "SELECT src_id FROM youtube_videos ";
$result = $conn->query($sql);
while($row = $result->fetch_assoc()) {
echo 'Video ID: '.$row["src"];
$headers = get_headers('http://www.youtube.com/oembed?url=http://www.youtube.com/watch?v='.$row["src_id"].'');
if (!strpos($headers[0], '200')) {
echo " is invalid";
} else {
echo "";
}
echo 'no results';
}
萧十郎