几个小时前我才遇到simple_html_dom。我有DOM的基本知识,但我无法理解simple_html_dom提供的输出。
我使用的代码是
$html = new simple_html_dom();
$html = str_get_html("html><body><p>Hello World!</p></body></html>");
echo "<pre>";
print_r($html);
echo "</pre>";
打印的输出为http://pastebin.com/MdknAJq2
我不明白为什么会有这么多的递归语句,以及
是什么[_] => Array([0] => 3
[7] =>
[1] => 5
)
表示。我是一个完整的新手。请帮忙。 谢谢:))