Get YouTube video title in PHP

后端 未结 7 1687
陌清茗
陌清茗 2021-01-22 22:44

In one of my applications I am saving a YouTube video\'s id... Like "A4fR3sDprOE". I have to display its title in the application. I got the following code for getting

7条回答
  •  迷失自我
    2021-01-22 22:56

    Try:

    // Use @ to suppress warnings
    $content = @file_get_contents("http://youtube.com/get_video_info?video_id=" . $video_id);
    if($content===FALSE) {
        .. Handle error here
    }
    else{
        ..The rest of your code
    }
    

提交回复
热议问题