私はそれを機能させようとしているこの単純なパーサーを持っています。しかし、私は Fatal error: Call to a member function find() on a non-object in /home4/msaraiva/public_html/test.php on line 8 error を取得します。これはそれぞれの最初にあります。しかし: この URL http://jantes.rupteur.com/jantes-alu/Alfa-Romeo-145 (78 レコードのみ) では問題なく動作しますが、http://jantes.rupteur.com/jantes-にアクセスするとうまくいきます。 alu/Alfa-Romeo-159には 399 のレコードがあり、パーサーによって致命的なエラーが発生しました。すべてを試しましたが、機能しません。PS: すべてのページは同じ html 構造を持っています
ありがとうございます
<?php
include_once('simple_html_dom.php');
$html=file_get_html("http://jantes.rupteur.com/jantes-alu/Alfa-Romeo-145");
foreach ($html ->find('td[valign=top]') as $t){
foreach ($t ->find('h1') as $k)
foreach ($t ->find('strong') as $g)
echo $k;
echo $g .'<br>';
foreach ($html ->find('td[valign=top]') as $f)
$num = explode('/>',$f);
echo strip_tags($num[1]);
}
echo '<br>';
?>