1

我想使用 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(); 

我只看到最后一张图片。哪里有问题?

4

1 回答 1

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;
  }
}
于 2013-05-22T21:27:43.497 回答