php PHP函数从URL获取youtube ID

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php PHP函数从URL获取youtube ID相关的知识,希望对你有一定的参考价值。

<?php
function get_youtube_video_ID($youtube_video_url) {
  /**
  * Pattern matches
  * http://youtu.be/ID
  * http://www.youtube.com/embed/ID
  * http://www.youtube.com/watch?v=ID
  * http://www.youtube.com/?v=ID
  * http://www.youtube.com/v/ID
  * http://www.youtube.com/e/ID
  * http://www.youtube.com/user/username#p/u/11/ID
  * http://www.youtube.com/leogopal#p/c/playlistID/0/ID
  * http://www.youtube.com/watch?feature=player_embedded&v=ID
  * http://www.youtube.com/?feature=player_embedded&v=ID
  */
  $pattern = 
    '%                 
    (?:youtube                    # Match any youtube url www or no www , https or no https
    (?:-nocookie)?\.com/          # allows for the nocookie version too.
    (?:[^/]+/.+/                  # Once we have that, find the slashes
    |(?:v|e(?:mbed)?)/|.*[?&]v=)  # Check if its a video or if embed 
    |youtu\.be/)                  # Allow short URLs
    ([^"&?/ ]{11})                # Once its found check that its 11 chars.
    %i';

  // Checks if it matches a pattern and returns the value
  if (preg_match($pattern, $youtube_video_url, $match)) {
    return $match[1];
  }
  
  // if no match return false.
  return false;
}
?>

以上是关于php PHP函数从URL获取youtube ID的主要内容,如果未能解决你的问题,请参考以下文章

PHP 使用php从youTube url获取视频ID属性

php 从URL获取Youtube ID

使用php从youTube url获取视频ID属性

我需要一些帮助来纠正我在 php 中的代码 - 如何从 YouTube URL 获取视频 ID [重复]

如何使用php和API从url获取youtube视频的缩略图

如何从 php 中的 youtube id 创建 mysql 表? [复制]