我试图在加载 PHP 页面时自动打开指定页面,但不是通过重定向,file_get_contents 是否适合这个?我也尝试过 curl 使用以下内容,但是我没有看到任何响应:
curl_setopt($ch=curl_init(), CURLOPT_URL, "http://www.google.com");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$response = curl_exec($ch);
curl_close($ch);
提前谢谢了