0
if ($rows->length > 0)
{
for ($i=1; $i<=$rows->length ; $i++)
{
//echo($rows[$i]->getElementsByTagname('th'));
$cols = $rows->item($i)->getElementsByTagname('td');
for ($j=0; $j <$cols->length ; $j++)
{
//echo($cols[$j]->nodeValue);
$input_lines = $cols[$j]->nodeValue;
$input_lines = preg_replace("/\D/", "", $input_lines);
echo $input_lines;
echo"<br><br>";
}
}
}
Fatal error: Call to a member function
getElementsByTagname()
on null致命錯誤:調用一個成員函數的getElementsByTagName()上的空
是'$ rows-> item'對象的方法或屬性? –
你可以顯示echo $ rows-> item($ i); ? – akbansa