我正在使用DOMDocument解析$content
变量中的html,用图像替换所有iframe。 foreach仅替换ODD iframe。我删除了foreach中的所有代码,发现导致此问题的代码是:'$ iframe-> parentNode-> replaceChild($ link,$ iframe);'
为什么foreach会跳过所有奇怪的iframe?
代码:
$count = 1;
$dom = new DOMDocument;
$dom->loadHTML($content);
$iframes = $dom->getElementsByTagName('iframe');
foreach ($iframes as $iframe) {
$src = $iframe->getAttribute('src');
$width = $iframe->getAttribute('width');
$height = $iframe->getAttribute('height');
$link = $dom->createElement('img');
$link->setAttribute('class', 'iframe-'.self::return_video_type($iframe->getAttribute('src')).' iframe-'.$count.' iframe-ondemand-placeholderImg');
$link->setAttribute('src', $placeholder_image);
$link->setAttribute('height', $height);
$link->setAttribute('width', $width);
$link->setAttribute('data-iframe-src', $src);
$iframe->parentNode->replaceChild($link, $iframe);
echo "here:".$count;
$count++;
}
$content = $dom->saveHTML();
return $content;
这是问题的代码行
$iframe->parentNode->replaceChild($link, $iframe);
答案 0 :(得分:4)
从DOMNodeList返回的getElementsByTagName
为"live":
即,对基础文档结构的更改将反映在所有相关的NodeList ...对象
中
因此,当您删除元素(在这种情况下通过将其替换为另一个元素)时,它将不再存在于节点列表中,并且下一个元素将在索引中占据其位置。然后,当foreach
命中下一个迭代,从而下一个索引时,将有效地跳过一个。
不要通过这样的foreach
从DOM中删除元素。
一种可行的方法是使用while
循环进行迭代和替换,直到$iframes
节点列表为空。
while ($iframes->length) {
$iframe = $iframes->item(0);
$src = $iframe->getAttribute('src');
$width = $iframe->getAttribute('width');
$height = $iframe->getAttribute('height');
$link = $dom->createElement('img');
$link->setAttribute('class', 'iframe-'.self::return_video_type($iframe->getAttribute('src')).' iframe-'.$count.' iframe-ondemand-placeholderImg');
$link->setAttribute('src', $placeholder_image);
$link->setAttribute('height', $height);
$link->setAttribute('width', $width);
$link->setAttribute('data-iframe-src', $src);
$iframe->parentNode->replaceChild($link, $iframe);
echo "here:".$count;
$count++;
}
答案 1 :(得分:0)
今天面对这个问题,并给出答案的指导,我为你们提供了一个简单的代码解决方案
$iframes = $dom->getElementsByTagName('iframe');
for ($i=0; $i< $iframes->length; $i++) {
$iframe = $iframes->item($i);
if(//condition to replace){
// do some replace thing
$i--;
}
}
希望获得帮助。