我做了一个简单的应用程序来从allrecipes.com.
我正在使用的网站上获取食谱信息preg_match
,但是有些东西不起作用。
$geturl = file_get_contents("http://allrecipes.com/Recipe/Brown-Sugar-Smokies/Detail.aspx?src=rotd");
preg_match('#<title>(.*) - Allrecipes.com</title>#', $geturl, $match);
$name = $match[1];
echo $name;
我只是想获取页面的标题(减去- Allrecipes.com
部分)并将其放入变量中,但出现的所有内容都是空白的。