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
ページのタイトル (一部を除いたもの) を変数に入れようとしているだけですが、表示されるのはすべて空白です。