我正在尝试使用 DOM 文件解析所有 div,但所有 div 都没有出现。
我的代码是:
<?php
include('simplehtmldom/simple_html_dom.php');
// Create DOM from URL or file
$html = file_get_html('http://www.ebay.in');
foreach($html->find('div') as $element)
echo $element->class . '<br>';
?>