来自嵌入代码或使用 PHP 正则表达式 RegEx 的 URL 的 YouTube Vimeo 视频 ID
我想通过其嵌入代码或 URL 获取 YouTube 或 Vimeo 的视频 ID,有任何解决方案可以使用 PHP 实现此目的吗?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我想通过其嵌入代码或 URL 获取 YouTube 或 Vimeo 的视频 ID,有任何解决方案可以使用 PHP 实现此目的吗?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(4)
您可以使用 preg_match 来获取 ID。我稍后将在本答案中介绍表达式本身,但以下是如何使用 preg_match 的基本思想:
以下是您询问的每种可能输入类型的表达式的细分。我为每个测试用例和结果提供了一个链接。
对于 YouTube 网址,例如
http://www.youtube.com/watch?v=89OpN_277yY
,您可以使用 此 表达式:<前><代码>v=(.{11})
YouTube 嵌入代码可以如下所示(剪掉一些无关的内容) :
或者像这样:
因此,从任一样式获取 ID 的表达式将为 this:
<前><代码>\/v\/(.{11})|\/嵌入\/(.{11})
Vimeo URL 看起来像
http://vimeo.com/据我所知,
。我发现的最低位数只是http://vimeo.com/2
,我不知道是否有上限,但我现在假设它限制为 10 位数字。希望有人知道详细信息时可以纠正我。 可以使用此表达式:<前><代码>vimeo\.com\/([0-9]{1,10})
Vimeo embed 代码采用以下形式:
所以你可以使用这个表达式:
或者,如果数字的长度最终可能超过 10,您可以使用:
请记住,如果您将表达式括在双引号中,则需要使用
\
转义"
。总之,我不确定您想如何实现这一点,但您可以将所有表达式与
|
组合起来,也可以单独匹配每个表达式。如果您希望我提供有关如何组合表达式的更多详细信息,请对此答案添加评论。You could use preg_match to get the IDs. I will cover the expressions themselves later in this answer, but here is the basic idea of how to use preg_match:
Here is a breakdown of the expressions for each type of possible input you asked about. I included a link for each showing some test cases and the results.
For YouTube URLs such as
http://www.youtube.com/watch?v=89OpN_277yY
, you could use this expression:YouTube embed codes can either look like this (some extraneous stuff clipped):
Or like this:
So an expression to get the ID from either style would be this:
Vimeo URLs look like
http://vimeo.com/<integer>
, as far as I can tell. The lowest I found was simplyhttp://vimeo.com/2
, and I don't know if there's an upper limit, but I'll assume for now that it's limited to 10 digits. Hopefully someone can correct me if they are aware of the details. This expression could be used:Vimeo embed code takes this form:
So you could use this expression:
Alternately, if the length of the numbers may eventually exceed 10, you could use:
Bear in mind that the
"
will need to be escaped with a\
if you are enclosing the expression in double quotes.In summary, I'm not sure how you wanted to implement this, but you could either combine all expressions with
|
, or you could match each one separately. Add a comment to this answer if you want me to provide further details on how to combine the expressions.这里还有另一个类似的[仅适用于 youtube] 的答案,看看可能会有用。
PHP 正则表达式获取 YouTube 视频 ID?
There is another similar [for youtube only] answered here, might be useful to have a look.
PHP Regex to get youtube video ID?
还有一个问题有很多很好的答案,特别是来自@user2200660。
https://stackoverflow.com/a/16841070/3850405
我更喜欢使用可以处理嵌入代码或当前使用的任何 URL。
可以处理我遇到的所有网址的正则表达式:
https://regex101.com/r/p2Kldc/ 1/
感谢 @zeckdude 提供 PHP 中的原始示例代码。
https://stackoverflow.com/a/29860052/3850405
JavaScript 版本:
https://stackoverflow.com/a/65846269/3850405
There is another question with a lot of good answers, specifically from @user2200660.
https://stackoverflow.com/a/16841070/3850405
I prefer to use a regex that both can handle embedded code or any URL currently used.
Regex that can handle all URLs I have come across:
https://regex101.com/r/p2Kldc/1/
Credits to @zeckdude for the original example code in PHP.
https://stackoverflow.com/a/29860052/3850405
JavaScript version:
https://stackoverflow.com/a/65846269/3850405
根据最新的 youtube 标准,您可以使用以下代码从嵌入代码中提取视频 id。
谢谢
According to the latest youtube standard, you can use following code to extract video id from embed code.
Thank you