YouTube Vimeo Video ID from Embed Code or From URL with PHP Regular Expression RegEx

前端 未结 4 1284
轮回少年
轮回少年 2021-02-01 10:09

I want to get Video ID for YouTube or Vimeo via its Embed code or from URL, Any solution to do this with PHP ?

4条回答
  •  借酒劲吻你
    2021-02-01 10:58

    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:

    preg_match('expression(video_id)', "http://www.your.url.here", $matches);
    $video_id = $matches[1];
    

    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.

    1. For YouTube URLs such as http://www.youtube.com/watch?v=89OpN_277yY, you could use this expression:

      v=(.{11})
      
    2. YouTube embed codes can either look like this (some extraneous stuff clipped):

      
          
      
      
      

      So an expression to get the ID from either style would be this:

      \/v\/(.{11})|\/embed\/(.{11})
      
    3. Vimeo URLs look like http://vimeo.com/, as far as I can tell. The lowest I found was simply http://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\.com\/([0-9]{1,10})
      
    4. Vimeo embed code takes this form: