该simple_html_dom
库非常适合获取已知属性,但有没有办法获取元素所有属性的列表?
例如,如果我有:
<div id="test" custom1="custom" custom2="custom">
我可以很容易地得到id
:
$el = $html->find('div');
$id = $el->id;
custom1
但是,custom2
如果他们不提前知道,是否有可能获得?NVP
理想情况下,该解决方案将为所有属性 ( id
, custom1
, custom2
)生成一个 's 数组。