帮我写代码
$homepage = file_get_contents('index.html');
foreach($homepage->find('table') as $table){
// returns all the <tr> tag inside $table
$all_trs = $table->find('tr');
$count = count($all_trs);
echo $count;
}
我正在尝试获取 index.html 的内容,然后计算 tr 标签的数量,但上面的代码不起作用。