如何在php和cakephp中从youtube的url获取视频id
如何从php和cakephp中的youtube url获取视频id
我有这个url
http://youtu.be/JaFfJN_iKdA
如何通过正则表达式从中获取视频id
how to get Video id from url of youtube in php and cakephp
i have this url
http://youtu.be/JaFfJN_iKdA
how to get video id from it by regular expression
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
这适用于一系列常见的 YT URL 格式,包括您发布的格式。
That will work for a bunch of common YT URL formats including the one you posted.
您可以使用
parse_url()
< 代替正则表达式/a> 功能:Instead of regular expressions, you could use
parse_url()
function:你可以使用的图书馆
http://autoembed.com/
它还涵盖其他 100 个视频门户
you could use the library of
http://autoembed.com/
it also covers 100 other video portals
经过努力,我做了一个获取 youtube 信息的功能
after hard working ,i make a function for getting youtube info