我试图使用此处提供的脚本php get all the images from url which width and height >=200 more quicker
我下载并使用了http://sourceforge.net/projects/simplehtmldom/
中给出的simple_html_dom.php 之类的内容时脚本崩溃了。有人可以帮忙吗?
编辑: 我把错误报告给了它。
致命错误:在第16行的/var/www/smartbiz/smartbiz/test2.php中调用非对象的成员函数find()
第16行:if ($html->find ( 'img' )) {
EDIT2:不确定这是否相关PHP simple html dom: apache crashes,PHP simple html dom: apache crashes
答案 0 :(得分:0)
您可以将代码包装在try-catch语句中。
<?
try{
// Your image checking code..
}catch( Exception $e ){
echo "Image not found: $e";
}
?>
听起来错误的是HTML没有加载。我们需要更多的代码,否则我可以给你基本的调试建议。
尝试以另一种方式放置HTML。
$html = str_get_html( file_get_contents( $YOUR_URL ) );
我希望这会有所帮助。