<small id='zqusI'></small><noframes id='zqusI'>

    • <bdo id='zqusI'></bdo><ul id='zqusI'></ul>

      <legend id='zqusI'><style id='zqusI'><dir id='zqusI'><q id='zqusI'></q></dir></style></legend>

      1. <tfoot id='zqusI'></tfoot>
      2. <i id='zqusI'><tr id='zqusI'><dt id='zqusI'><q id='zqusI'><span id='zqusI'><b id='zqusI'><form id='zqusI'><ins id='zqusI'></ins><ul id='zqusI'></ul><sub id='zqusI'></sub></form><legend id='zqusI'></legend><bdo id='zqusI'><pre id='zqusI'><center id='zqusI'></center></pre></bdo></b><th id='zqusI'></th></span></q></dt></tr></i><div id='zqusI'><tfoot id='zqusI'></tfoot><dl id='zqusI'><fieldset id='zqusI'></fieldset></dl></div>

        从任何 YouTube URL 获取 YouTube 视频 ID 的 RegEx 模式

        时间:2023-10-11

            <tbody id='FQ1Io'></tbody>

          <small id='FQ1Io'></small><noframes id='FQ1Io'>

          <i id='FQ1Io'><tr id='FQ1Io'><dt id='FQ1Io'><q id='FQ1Io'><span id='FQ1Io'><b id='FQ1Io'><form id='FQ1Io'><ins id='FQ1Io'></ins><ul id='FQ1Io'></ul><sub id='FQ1Io'></sub></form><legend id='FQ1Io'></legend><bdo id='FQ1Io'><pre id='FQ1Io'><center id='FQ1Io'></center></pre></bdo></b><th id='FQ1Io'></th></span></q></dt></tr></i><div id='FQ1Io'><tfoot id='FQ1Io'></tfoot><dl id='FQ1Io'><fieldset id='FQ1Io'></fieldset></dl></div>
            • <bdo id='FQ1Io'></bdo><ul id='FQ1Io'></ul>
              <legend id='FQ1Io'><style id='FQ1Io'><dir id='FQ1Io'><q id='FQ1Io'></q></dir></style></legend>
            • <tfoot id='FQ1Io'></tfoot>
                1. 本文介绍了从任何 YouTube URL 获取 YouTube 视频 ID 的 RegEx 模式的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  让我们以这些 URL 为例:

                  Let's take these URLs as an example:

                  1. http://www.youtube.com/watch?v=8GqqjVXhfMU&feature=youtube_gdata_player
                  2. http://www.youtube.com/watch?v=8GqqjVXhfMU

                  此 PHP 函数在第 1 种情况下无法正确获取 ID,但会在第 2 种情况下正确获取 ID.第 1 种情况非常常见,其中任何内容都可能出现在 YouTube ID 后面.

                  This PHP function will NOT properly obtain the ID in case 1, but will in case 2. Case 1 is very common, where ANYTHING can come behind the YouTube ID.

                  /**
                   * get YouTube video ID from URL
                   *
                   * @param string $url
                   * @return string YouTube video id or FALSE if none found. 
                   */
                  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 (false !== $result) {
                          return $matches[1];
                      }
                      return false;
                  }
                  

                  我的想法是,必须有一种方法可以让我只查找v=",无论它位于 URL 的哪个位置,然后获取后面的字符.以这种方式,不需要复杂的 RegEx.这是离谱吗?对起点有什么想法吗?

                  What I'm thinking is that there must be a way where I can just look for the "v=", no matter where it lies in the URL, and take the characters after that. In this manner, no complex RegEx will be needed. Is this off base? Any ideas for starting points?

                  推荐答案

                  if (preg_match('/youtube.com/watch?v=([^&?/]+)/', $url, $id)) {
                    $values = $id[1];
                  } else if (preg_match('/youtube.com/embed/([^&?/]+)/', $url, $id)) {
                    $values = $id[1];
                  } else if (preg_match('/youtube.com/v/([^&?/]+)/', $url, $id)) {
                    $values = $id[1];
                  } else if (preg_match('/youtu.be/([^&?/]+)/', $url, $id)) {
                    $values = $id[1];
                  }
                  else if (preg_match('/youtube.com/verify_age?next_url=/watch%3Fv%3D([^&?/]+)/', $url, $id)) {
                      $values = $id[1];
                  } else {   
                  // not an youtube video
                  }
                  

                  这是我用来从 youtube 网址中提取 id 的方法.我认为它适用于所有情况.

                  This is what I use to extract the id from an youtube url. I think it works in all cases.

                  注意最后 $values = 视频的 id

                  Note that at the end $values = id of the video

                  这篇关于从任何 YouTube URL 获取 YouTube 视频 ID 的 RegEx 模式的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  上一篇:Youtube API - 提取视频 ID 下一篇:如何使用 PHP 检查 YouTube 上是否存在视频?

                  相关文章

                  • <bdo id='lvZnm'></bdo><ul id='lvZnm'></ul>
                2. <tfoot id='lvZnm'></tfoot>
                  1. <legend id='lvZnm'><style id='lvZnm'><dir id='lvZnm'><q id='lvZnm'></q></dir></style></legend>

                  2. <small id='lvZnm'></small><noframes id='lvZnm'>

                      <i id='lvZnm'><tr id='lvZnm'><dt id='lvZnm'><q id='lvZnm'><span id='lvZnm'><b id='lvZnm'><form id='lvZnm'><ins id='lvZnm'></ins><ul id='lvZnm'></ul><sub id='lvZnm'></sub></form><legend id='lvZnm'></legend><bdo id='lvZnm'><pre id='lvZnm'><center id='lvZnm'></center></pre></bdo></b><th id='lvZnm'></th></span></q></dt></tr></i><div id='lvZnm'><tfoot id='lvZnm'></tfoot><dl id='lvZnm'><fieldset id='lvZnm'></fieldset></dl></div>