PHP之使用cURL实现Get和Post请求
header('Content-type:text/html; Charset=utf-8');
$uri = "http://xxxxxxx/Admin/Record/add";
$data = array(
'username'=>'xxxxx',
'mobile'=>'13420198',
'code'=>'czoxMDoiY2RocjhneW4xdSI7',
'location'=>'山西省晋中市介休市',
'addr'=>'中国中国中国中国中国',
'url'=>'http://lgnk.mandy.pw/'
);
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $uri);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);//要求结果为字符串并输出到屏幕上
curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
$return = curl_exec($ch);//执行并获得HTML内容
curl_close($ch);
$url = "http://www.cnblogs.com/blogforly/";//你要请求的地址
$ch = curl_init();//初始化cURL
curl_setopt($ch,CURLOPT_URL,$url);//抓取指定网页
curl_setopt($ch,CURLOPT_RETURNTRANSFER,1);//要求结果为字符串并输出到屏幕上
curl_setopt($ch, CURLOPT_HEADER, 0);//设置header
$output = curl_exec($ch);//执行并获得HTML内容
curl_close($ch);//释放cURL句柄
print_r($output);
下一篇: 整理推荐Laravel优秀扩展包
推荐阅读
-
postman的安装与使用方法(模拟Get和Post请求)
-
使用PHP Socket 编程模拟Http post和get请求
-
微信小程序授权 获取用户的openid和session_key【后端使用java语言编写】,我写的是get方式,目的是测试能否获取到微信服务器中的数据,后期我会写上post请求方式。
-
php curl请求 (get请求,post请求,代理ip设置)
-
PHP的curl实现get,post和cookie(实例介绍)
-
PHP使用curl请求实现post方式上传图片文件功能示例
-
PHP实现支持GET,POST,Multipart/form-data的HTTP请求类
-
PHP get和post向服务器发送请求
-
php访问url(get和post请求)
-
php使用file_get_contents(‘php://input‘)和$_POST的区别实例对比