我想使用 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();
我只看到最后一张图片。哪里有问题?