How to match a part of an <iframe> tag?

后端 未结 6 2066
小鲜肉
小鲜肉 2021-01-21 13:48

I\'m trying to match the highlighted parts of this string:

 maybe something here src=\"http://some.random.url.com/\" and the string continues.         


        
6条回答
  •  灰色年华
    2021-01-21 13:54

    A regular expression is going to be the cleanest way to do it:

    preg_match('', $iframe);
    
    print_r($iframe);
    
    array([0] => whole reg ex match, [1] => your src url);
    

提交回复
热议问题