编程语言
首页 > 编程语言> > php 通过 curl 模拟发送 get 请求

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);

标签:ch,setopt,get,fh,curl,php,CURLOPT
来源: https://www.cnblogs.com/weiwozui/p/16306596.html