[PHP]HTMLを取得

file_get_contents

phpであるWebページのhtmlを取得し、スクレイピングして必要な情報を取得したい。
そんなとき、php1行で書けてしまいます。


<?php
$url = 'http://www.yahoo.co.jp';
$html = file_get_contents($url);
echo $html;
?>