「1.php」と「2.php」の2つのphpファイルがあります。
次のような内容の「1.php」:
<?PHP
$url = "http://www.google.com/";
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL,$url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$html = curl_exec($ch);
echo $html;
curl_close($ch);
?>
http://domain.com/1.phpにアクセスすると、www.google.com のコンテンツが返されます
問題は
、「2.php」を使用して「1.php」の「www.google.com」である URL を取得するにはどうすればよいかということです。
(「http://domain.com/2.php」にアクセスすると、「www.google.com」というテキストが表示されます。)