在简单的html dom scrape变量中删除特定图像

时间:2015-05-16 12:10:33

标签: php html simple-html-dom

我创建了一个下面的foreach语句,该语句遍历$ gosu_full-> find('img')中的所有图像。但是,我想要移除的特定图像是$img->src == $gosu_img。到目前为止,我已经尝试将$img->src设置为空字符串和unset($img),但没有任何作用。我该怎么办才能删除它?

foreach($gosu_full->find('img') as $img) {
                if  (stripos($img->src,'http://www.gosugamers.net') == true) {

                } else {
                    $img->src = "http://www.gosugamers.net" . $img->src;


                    if ($img->src == $gosu_img){
                        unset($img);

                    }
                }



}

1 个答案:

答案 0 :(得分:1)

我认为你应该重写img标签的html代码

$img->outertext = '';