我需要在我的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脚本。
答案 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);
}
?>