Grab the video ID from YouTube URL?

前端 未结 5 1894
臣服心动
臣服心动 2021-01-23 11:38

Say I have a list of IDs like so:

http://www.youtube.com/watch?v=KMU0tzLwhbE
http://youtu.be/KMU0tzLwhbE
http://www.youtube.com/watch?v=KMU0tzLwhbE&featured=         


        
5条回答
  •  失恋的感觉
    2021-01-23 12:18

    The first group of a preg_match using (?:(?:\?|&)v=|youtu\.be\/)(.+?)(?:$|&) as the pattern.

提交回复
热议问题