PHP如何发送GET/POST请求调用API

栏目: PHP · 发布时间: 6年前

内容简介:PHP发送GET/POST请求的方法、PHP调用API代码、可以使用curl方法、file_get_content方法实现post请求数据提交

PHP发送GET/POST请求的方法、 PHP 调用API代码、可以使用curl方法、file_get_content方法实现post请求数据提交

curl(需要curl扩展)

public function api1()
{
    $url = "https://api.com";
        $body = array(
                'username' => 'vienblog',
                'link' => 'vienblog.com',
                'title' => '免费开源博客'
        );
        $ch = curl_init();
        curl_setopt($ch, CURLOPT_URL, url);
        curl_setopt($ch, CURLOPT_POSTFIELDS, $body);
        curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
        curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);
        curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
        $result = curl_exec($ch);

        return $result;
}

file_get_content

public function api2()
    {
            $url = "https://api.com";
                $data = array(
                'username' => 'vienblog',
                'link' => 'vienblog.com',
                'title' => '免费开源博客'
                );
        $postdata = http_build_query($data);
        $opts = array('http' =>
            array('method' => 'POST', 'header' => 'Content-type: application/x-www-form-urlencoded', 'content' => $postdata));
        $context = stream_context_create($opts);
        $result = file_get_contents($url, false, $context);
        return $result;
    }
欢迎小伙伴们在下方评论区留言 ~ O(∩_∩)O 文章对我有帮助, 点此请博主吃包辣条

以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,也希望大家多多支持 码农网

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

One Click

One Click

Richard L. Brandt / Portfolio Hardcover / 2011-10-27 / 25.95

An insightful look at how Amazon really works and how its founder and CEO makes it happen. Amazon's business model is deceptively simple: make online shopping so easy and convenient that customers ......一起来看看 《One Click》 这本书的介绍吧!

CSS 压缩/解压工具
CSS 压缩/解压工具

在线压缩/解压 CSS 代码

Markdown 在线编辑器
Markdown 在线编辑器

Markdown 在线编辑器

正则表达式在线测试
正则表达式在线测试

正则表达式在线测试