Xenu链接检查器无法在html代码中看到url链接

时间:2013-07-23 16:52:26

标签: php html url xenu

我需要在我的www网站上查看Xenu应用程序的视图链接。

在我的网站上有HTML代码。

<img src="mysite/pictures.php?url=http://othersite.com/pic1.jpg">
<img src="mysite/pictures.php?url=http://othersite.com/pic2.jpg">
<img src="mysite/pictures.php?url=http://othersite.com/pic3.jpg">

但Xenu无法检查图片是否存在。我如何使用pictures.php内的一些脚本来完成它?

我需要检查参数url=http://othersite.com/pic1.jpg中的链接是否为JPG图片。 我无法更改HTML代码,因为它必须是常量。所以我必须使用一些PHP脚本。

1 个答案:

答案 0 :(得分:0)

你有很多方法可以做到最好,因为我总是使用Simple HTML DOM: -

<?php 
    include(simple_html_dom);
    $html=new simplehtmldom();
    $html->file_get_html('http://exampl.com');
     foreach($html->find(img)->src as $scr) {
     echo=strplace('mysite/pictures.php?url=','',$scr);
      }
    ?>