我想<td valign="top" class="notizia_testo"></td>
从这个 url中获取文本
http://www.ladige.it/news/2008_lay_notizia_01.php?id_cat=4&id_news=100152
我尝试了simple html dom
and php regular-expression
,但没有返回。我检查了 html 原始代码,并将它们复制为:
<?php
$str = <<<EOT
//all the html raw code
EOT;
preg_match_all("|<td valign=\"top\" class=\"notizia_testo\">([^^]*?)</td>|u", $str, $matches1);
print_r($matches1);
?>
我终于发现故障可能是由于:
line 762 <!?php include($_SERVER["DOCUMENT_ROOT"]."/include/adv/manzoni_bigrect.php"); ?>
如何通过这条线并为我工作?谢谢。