我做一個簡單的應用程序,才能從像allrecipes.com.
我使用preg_match
網站食譜的信息,但有什麼不工作。問題與的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
部分)的標題,並把它變成一個變量,但一切變成了空白。
您是否嘗試過打印'$ geturl',看見如果字符串其實有? – Ryan
您缺少解決您的代碼問題。例如,在使用它們之前檢查返回值。 – hakre
@minitech,是啊,當我打印'$ geturl',我得到了整個 – Muhambi