Strip YouTube Embed Code Down to URL Only

后端 未结 3 552
一生所求
一生所求 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

    The best way is to use a DOM parser.

    http://php.net/manual/en/class.domdocument.php

    $doc = new DOMDocument();
    $doc->loadHTML('');
    

提交回复
热议问题