Strip YouTube Embed Code Down to URL Only

后端 未结 3 424
一生所求
一生所求 2021-01-28 05:42

Please help!

I need to strip the following code so that it only uses the \"value\" part

$

        
      
      
      
3条回答
  •  盖世英雄少女心
    2021-01-28 06:19

    $string = '';
    
    $start = strpos($string, 'value="');
    $string = substr($string, $start + 7);
    $end = strpos($string, '" ');
    $string = substr($string, 0, $end);
    
    echo $string;
    

    little more complex than webartos, but will grab any value, instead of just the youtube link

提交回复
热议问题