我有 2 个 php 文件:“1.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”网址?
(我想当我去“ http://domain.com/2.php ”时它会显示“www.google.com”文本。)