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

PHP利用curl发送HTTP请求的实例代码

程序员文章站 2022-04-10 16:47:46
curl 函数概述php支持的由daniel stenberg创建的libcurl库允许你与各种的服务器使用各种类型的协议进行连接和通讯。libcurl目前支持http、https、ftp、gophe...

curl 函数概述

php支持的由daniel stenberg创建的libcurl库允许你与各种的服务器使用各种类型的协议进行连接和通讯。

libcurl目前支持http、https、ftp、gopher、telnet、dict、file和ldap协议。libcurl同时也支持https认证、http post、http put、 ftp 上传(这个也能通过php的ftp扩展完成)、http 基于表单的上传、代理、cookies和用户名+密码的认证。

php中使用curl实现get和post请求的方法

这些函数在php 4.0.2中被引入。

实例

因为需要在 php 开发中对接其它接口需要用 php curl 去对接其它接口 我把他们封装成函数 希望能对大家有所帮助。

这里面是封装好的会自动把 data 进行转成 json 格式,同时解码成 php 数组输出。

<?php
function geturl($url){
    $headerarray =array("content-type:application/json;","accept:application/json");
    $ch = curl_init();
    curl_setopt($ch, curlopt_url, $url);
    curl_setopt($ch, curlopt_ssl_verifypeer, false); 
    curl_setopt($ch, curlopt_ssl_verifyhost, false); 
    curl_setopt($ch, curlopt_returntransfer, 1);
    curl_setopt($ch,curlopt_httpheader,$headerarray);
    $output = curl_exec($ch);
    curl_close($ch);
    $output = json_decode($output,true);
    return $output;
}


function posturl($url,$data){
    $data = json_encode($data);  
    $headerarray =array("content-type:application/json;charset='utf-8'","accept:application/json");
    $curl = curl_init();
    curl_setopt($curl, curlopt_url, $url);
    curl_setopt($curl, curlopt_ssl_verifypeer, false);
    curl_setopt($curl, curlopt_ssl_verifyhost,false);
    curl_setopt($curl, curlopt_post, 1);
    curl_setopt($curl, curlopt_postfields, $data);
    curl_setopt($curl,curlopt_httpheader,$headerarray);
    curl_setopt($curl, curlopt_returntransfer, 1);
    $output = curl_exec($curl);
    curl_close($curl);
    return json_decode($output,true);
}


function puturl($url,$data){
  $data = json_encode($data);
  $ch = curl_init(); //初始化curl句柄 
  curl_setopt($ch, curlopt_url, $url); //设置请求的url
  curl_setopt ($ch, curlopt_httpheader, array('content-type:application/json'));
  curl_setopt($ch, curlopt_returntransfer,1); //设为true把curl_exec()结果转化为字串,而不是直接输出 
  curl_setopt($ch, curlopt_customrequest,"put"); //设置请求方式
  curl_setopt($ch, curlopt_postfields, $data);//设置提交的字符串
  $output = curl_exec($ch);
  curl_close($ch);
  return json_decode($output,true);
}

function delurl($url,$data){
  $data = json_encode($data);
  $ch = curl_init();
  curl_setopt ($ch,curlopt_url,$put_url);
  curl_setopt ($ch, curlopt_httpheader, array('content-type:application/json'));
  curl_setopt ($ch, curlopt_returntransfer, 1);
  curl_setopt ($ch, curlopt_customrequest, "delete");  
  curl_setopt($ch, curlopt_postfields,$data);
  $output = curl_exec($ch);
  curl_close($ch);
  $output = json_decode($output,true);
}

function patchurl($url,$data){
  $data = json_encode($data);
  $ch = curl_init();
  curl_setopt ($ch,curlopt_url,$url);
  curl_setopt ($ch, curlopt_httpheader, array('content-type:application/json'));
  curl_setopt ($ch, curlopt_returntransfer, 1);
  curl_setopt ($ch, curlopt_customrequest, "patch"); 
  curl_setopt($ch, curlopt_postfields,$data);   //20170611修改接口,用/id的方式传递,直接写在url中了
  $output = curl_exec($ch);
  curl_close($ch);
  $output = json_decode($output);
  return $output;
}
?>

以上就是php利用curl发送http请求的实例代码的详细内容,更多关于php 发送http请求的资料请关注其它相关文章!

相关标签: PHP curl HTTP