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 文章对我有帮助, 点此请博主吃包辣条

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

查看所有标签

猜你喜欢:

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

C++ How to Program (5th Edition) (How to Program)

C++ How to Program (5th Edition) (How to Program)

Harvey & Paul) Deitel & Associates / Prentice Hall / 2005-01-05 / USD 98.00

With over 250,000 sold, Harvey and Paul Deitel's C++ How to Program is the world's best-selling introduction to C++ programming. Now, this classic has been thoroughly updated! The Deitels' groundbreak......一起来看看 《C++ How to Program (5th Edition) (How to Program)》 这本书的介绍吧!

MD5 加密
MD5 加密

MD5 加密工具

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

正则表达式在线测试