欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  神坛PHP

PHP之使用cURL实现Get和Post请求

程序员文章站 2022-02-22 20:22:51
...

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


相关标签: cURL