HTML SIMPLE DOM

时间:2016-10-15 22:41:23

标签: php parsing

我需要处理关于html简单dom的一件事。 我需要来自网址:www.streamuj.tv/video/1a660a85e9a2d02e976d 从源代码解析是:

<iframe src="http://www.streamuj.tv/video/1a660a85e9a2d02e976d?remote=1&width=960&height=540" width="975" height="555" scrolling="no" frameborder="0"></iframe>

需要解析这个:

<iframe 

src="http://www.streamuj.tv/video/1a660a85e9a2d02e976d?remote=1&width=960&height=540" width="975" height="555" scrolling="no" frameborder="0"></iframe>

请问这个怎么样? 我整天都在处理它,但我无法想象

1 个答案:

答案 0 :(得分:0)

使用正则表达式,您可以找到目标网址。使用preg_match()执行此操作。

preg_match("/http:[^?]+/", $html, $matches);
echo $matches[0];

请参阅demo

中的结果