2014-12-04 81 views
1

使用php簡單的dom解析器我有物品清單,我想統計這個結果中有多少物品。 如果我得到15項我想顯示總爲15php foreach項目總數

<?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

嘗試:

$total = count($html->find('div#song_html ')); 
+0

喜你的第一個答案做工精細... $總=計數($ HTML的「發現('DIV #song_html')); – Mullinsangebn 2014-12-04 08:09:53

+0

改變它我會採取你的回答 – Mullinsangebn 2014-12-04 08:10:10

+0

謝謝你正在工作正常... – Mullinsangebn 2014-12-04 08:10:54