删除属性为php的元素

时间:2016-03-09 20:08:15

标签: php attributes

我有很多具有相同开头的元素,但我想删除那些具有style属性的元素:

[例A]

<table style="display:none;" name="56de9e1ee43fb"><tr width="30px"><td>blah blah blah</td></tr></table>

但由于它具有style的属性,我希望它是

[例B]

<!--Nothing-->

有没有办法在PHP中执行此操作???

你可以做到这一点,你也可以摆脱它内部的元素???

1 个答案:

答案 0 :(得分:0)

可以使用DOM Parser for php(如DOMDocument)执行此操作。 有关此解析器,请参阅php documentation