我想使用 regex 和 simplehtmldom 从此页面获取文章的标题:http: //laperuanavegana.wordpress.com/about/
在这种情况下,标题是:Cómo preparar SEITÁN
这是我的正则表达式:
$html = file_get_html($url);
preg_match_all("title=(.*?)",$html->innertext,$title);
echo "this is title ".$title[0][0]."<br>";
如果有人帮助我找到错误,那将很有帮助。