Simple_html_dom:如何删除具有属性值的所有元素,第一个除外?

时间:2014-11-11 19:04:55

标签: php simple-html-dom

我的HTML页面中的一些元素具有相同的class属性值。我想删除除第一个之外的所有元素(元素)。

我写了以下SSCCE。所以问题是

正在执行两个循环,第一个循环更改第一个元素的属性值并中断循环,然后第二个循环删除具有该属性值的元素。

那么是否有更短,更低成本(在内存,速度等方面)或更直接的方式来做到这一点?可以在一个循环或类似的东西中完成?我觉得我做的时间太长了。

<?php

require_once("E:\\simple_html_dom.php");

$haystack = '<div>
    <div class="removable" style="background-color:pink; width:100%; height:50px;">aa</div>
    <div style="background-color:brown; width:100%; height:50px;">ss</div>
    <div class="removable" style="background-color:grey; width:100%; height:50px;">dd</div>
    <div class="removable" style="background-color:green; width:100%; height:50px;">gg</div>
    <div style="background-color:blue; width:100%; height:50px;">hh</div>
    <div class="removable" style="background-color:purple; width:100%; height:50px;">jj</div>
</div>';

$html_haystack = str_get_html($haystack);

//echo $html_haystack; //check

foreach ($html_haystack->find('div[class=removable]') as $removable) {
    $removable->class='removable_first';
    //$removable->style='background-color:black; width=100%; height=50px;'; //check
    break;
}

foreach($html_haystack->find('div[class=removable]') as $removable) {
    $removable->outertext= '';
}

$haystack = $html_haystack->save();

echo $haystack;

2 个答案:

答案 0 :(得分:2)

Find函数返回一个数组,因此第一个元素的索引为0。不需要使用第一个循环!

// Get all nodes
$array = $html_haystack->find('div[class=removable]');

// Edit the 1st => maybe you won't need this line if you're doing so only to skip the 1st node
$array[0]->class='removable_first';

// Remove the 1st from the array
unset($array[0]);

// Loop through the other nodes
foreach($array as $removable) {
    $removable->outertext= '';
}

答案 1 :(得分:1)

$html->find('.removable', 0)->class = 'removable_first';

foreach($html->find('.removable') as $removable){
  $removable->outertext = '';
}