使用php简单的dom解析器我有项目列表,我想要计算该结果中有多少项目。 如果我有15项我希望显示总数为15。
<?php
include('simple_html_dom.php');
$search = $_GET['search'];
$html = file_get_html('http://mysite/'.$search.'.html');
foreach ( $html->find('div#song_html ') as $e ) {
$title= $e->find('div', 2)->plaintext;
$total= //????? How can i Get total number of item????
echo $title.'<br>';
echo $total.'<br>';
}
?>
答案 0 :(得分:0)
尝试:
$total = count($html->find('div#song_html '));