php 通过 curl 模拟发送 get 请求
$ch=curl_init(‘http://www.scutephp.com/’);
curl_setopt($ch,CURLOPT_RETURNTRANSFER,true);
curl_setopt($ch,CURLOPT_BINARYTRANSFER,true);
$output=curl_exec($ch);
$fh=fopen(“out.html”,’w’);
fwrite($fh,$output);
fclose($fh);
原创文章,作者:306829225,如若转载,请注明出处:https://blog.ytso.com/272418.html