我正在尝试替换网页的网址。我使用DOM来获取页面中的所有链接,遍历链接并使用str_ireplace逐个查找和替换。 str_ireplace仅替换最后一个链接。当我计算时,它会给出要替换的链接数量的正确计数,但不会替换链接。
$contents=file_get_contents($_GET['page']);
$dom = new DOMDocument;
@$dom->loadHTML($contents);
$links = $dom->getElementsByTagName('a');
$c=0;
//Iterate over the extracted links and display their URLs
foreach ($links as $link){
//echo $link->nodeValue;
$arr['retUrl']=$link->getAttribute('href');
$xyz=json_encode($arr);
$rurl=$base_url.'?ret_url='.urlencode($xyz);
echo $arr['retUrl'].'<br>'.$rurl.'<br><br><br>';
$x=str_ireplace($link->getAttribute('href'),$rurl,$contents,$count);
$c=$c+$count;
echo '--'.$count.'--';
}
echo $x;
答案 0 :(得分:1)
这是因为您输出$x
,而$x
是什么?已处理最后 $contents
$link
。我确定您还需要在$contents
中保存以前的所有替换内容。替换
$x=str_ireplace($link->getAttribute('href'),$rurl,$contents,$count);
带
$contents = str_ireplace($link->getAttribute('href'),$rurl,$contents,$count);
在此处,覆盖 $contents
每个被替换的链接。循环后 - 输出$contents
。
答案 1 :(得分:0)
仔细观察,将其更改为:
$x .= str_ireplace($link->getAttribute('href'),$rurl,$contents,$count);