我想使用PHP& QueryPath查找文档中的所有图像,然后像这样修改其src
:
我想改变
http://test.com/test/name.jpg
到
http://example.com/xxx/name.jpg
我可以使用
找到具体的班级名称$qp2 = $qp->find('body');
现在,当我想在其上找到所有img
来更改src
时:
foreach ($qp2->find('img') as $i) {
//here change the src
}
但是当我执行
时echo $qp2->html();
我只看到最后一张图片。问题在哪里?
答案 0 :(得分:1)
喜欢这个吗?
foreach($qp2->find('img') as $key as $img) {
echo $img->html();
}
有时在重新使用qp对象时必须使用top()或end()。类似的东西:
$ qp = htmlqp($ lpurl);
foreach ($qp->find('img') as $key => $img){
print_r($img->attr('src'));
$url = parse_url ($img->attr('src'));
print_r($url);
echo '<br/>';
if (!isset($url['scheme']) && !isset($url['host']) && !empty($url['path'])){
$newimg = $htmlpath . '/' . $url['path'];
$img->end()->attr('src', $newimg);
echo $img->html();
}
}
foreach ($qp->top()->find('script') as $key => $script){
print_r($script->attr('src'));
$url = parse_url ($script->attr('src'));
print_r($url);
if (!isset($url['scheme']) && !isset($url['host']) && !empty($url['path'])){
$newjs = $htmlpath . '/' . $url['path'];
echo '<br/>';
echo 'this is the modified ' . $newjs;
}
}