php访问url(get和post请求)
- get请求
/*
* php访问url路径,get请求
*/
function curl_file_get_contents($durl){
// header传送格式
$headers = array(
"token:1111111111111",
"over_time:22222222222",
);
// 初始化
$curl = curl_init();
// 设置url路径
curl_setopt($curl, curlopt_url, $durl);
// 将 curl_exec()获取的信息以文件流的形式返回,而不是直接输出。
curl_setopt($curl, curlopt_returntransfer, true) ;
// 在启用 curlopt_returntransfer 时候将获取数据返回
curl_setopt($curl, curlopt_binarytransfer, true) ;
// 添加头信息
curl_setopt($curl, curlopt_httpheader, $headers);
// curlinfo_header_out选项可以拿到请求头信息
curl_setopt($curl, curlinfo_header_out, true);
// 执行
$data = curl_exec($curl);
// 打印请求头信息
// echo curl_getinfo($curl, curlinfo_header_out);
// 关闭连接
curl_close($curl);
// 返回数据
return $data;
}
- post请求
/*
* php访问url路径,post请求
*
* durl 路径url
* post_data array() post参数数据
*/
public function curl_file_post_contents($durl, $post_data){
// header传送格式
$headers = array(
"token:1111111111111",
"over_time:22222222222",
);
//初始化
$curl = curl_init();
//设置抓取的url
curl_setopt($curl, curlopt_url, $durl);
//设置头文件的信息作为数据流输出
curl_setopt($curl, curlopt_header, false);
//设置获取的信息以文件流的形式返回,而不是直接输出。
curl_setopt($curl, curlopt_returntransfer, true);
//设置post方式提交
curl_setopt($curl, curlopt_post, true);
// 设置post请求参数
curl_setopt($curl, curlopt_postfields, $post_data);
// curlinfo_header_out选项可以拿到请求头信息
curl_setopt($curl, curlinfo_header_out, true);
//执行命令
$data = curl_exec($curl);
// 打印请求头信息
// echo curl_getinfo($curl, curlinfo_header_out);
//关闭url请求
curl_close($curl);
//显示获得的数据
return $data;
}
上一篇: 我们分开吧,你老公是个好人
下一篇: 信仰之跃
推荐阅读
-
微信小程序授权 获取用户的openid和session_key【后端使用java语言编写】,我写的是get方式,目的是测试能否获取到微信服务器中的数据,后期我会写上post请求方式。
-
php curl请求 (get请求,post请求,代理ip设置)
-
PHP循环获取GET和POST值的代码
-
PHP的curl实现get,post和cookie(实例介绍)
-
vuejs使用axios异步访问时用get和post的实例讲解
-
PHP实现支持GET,POST,Multipart/form-data的HTTP请求类
-
PHP get和post向服务器发送请求
-
php访问url(get和post请求)
-
Android下通过httpClient发送GET和POST请求的实例代码
-
php使用file_get_contents(‘php://input‘)和$_POST的区别实例对比