如何使用 PHP 从 URL 中提取 YouTube 视频 ID?

Barbara Streisand
发布: 2024-11-02 06:34:02
原创
784 人浏览过

How to Extract YouTube Video IDs from URLs with PHP?

使用 PHP 提取 YouTube 视频 ID

在 Web 应用程序中,通常需要从用户输入的 URL 中提取 YouTube 视频 ID。尽管 YouTube API 没有为此任务提供直接函数,但还有替代解决方案。

一种方法是使用正则表达式来解析 URL 字符串。下面是执行此操作的 PHP 函数示例:

<code class="php">function youtube_id_from_url($url) {
    $pattern = '/^# Match any youtube URL
    (?:https?://)?  # Optional scheme. Either http or https
    (?:www\.)?      # Optional www subdomain
    (?:             # Group host alternatives
      youtu\.be/    # Either youtu.be,
    | youtube\.com  # or youtube.com
      (?:           # Group path alternatives
        /embed/     # Either /embed/
      | /v/         # or /v/
      | /watch\?v=  # or /watch\?v=
      )             # End path alternatives.
    )               # End host alternatives.
    ([\w-]{10,12})  # Allow 10-12 for 11 char youtube id.
    $/x';
    $result = preg_match($pattern, $url, $matches);
    if ($result) {
        return $matches[1];
    }
    return false;
}</code>
登录后复制

例如,运行 echo youtube_id_from_url('http://youtu.be/NLqAF9hrVbY');会输出“NLqAF9hrVbY”。

另一个选择是使用 YouTube 的 oEmbed 服务。这提供了有关视频的元数据,包括 ID。下面是一个示例:

<code class="php">$url = 'http://youtu.be/NLqAF9hrVbY';
var_dump(json_decode(file_get_contents(sprintf('http://www.youtube.com/oembed?url=%s&amp;format=json', urlencode($url)))));</code>
登录后复制

oEmbed 服务提供附加信息,例如视频标题和缩略图。但是,ID 不会直接包含在响应中。

最终,选择使用哪种方法取决于您的具体需求。使用正则表达式通常更简单,而 oEmbed 服务可以提供更全面的信息。

以上是如何使用 PHP 从 URL 中提取 YouTube 视频 ID?的详细内容。更多信息请关注PHP中文网其他相关文章!

来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责声明 Sitemap
PHP中文网:公益在线PHP培训,帮助PHP学习者快速成长!