php 通过 curl 模拟发送 get 请求


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

(0)
上一篇 2022年7月9日
下一篇 2022年7月9日

相关推荐

发表回复

登录后才能评论