0

我需要使用 Xenu 应用程序检查我的 www 站点上的视图链接。

在我的网站上有 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 脚本来做。

4

1 回答 1

0

你有很多方法可以做到最好,因为我一直使用的是简单的 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);
      }
    ?> 
于 2016-01-13T21:08:17.300 回答