美文网首页
2021-04-19 使用Guzzle执行HTTP请求

2021-04-19 使用Guzzle执行HTTP请求

作者: 浩克啊12138 | 来源:发表于2021-04-19 13:11 被阅读0次
    1. 安装必要的包
    $ composer require guzzlehttp/guzzle
    

    2.使用

            $client = new Client();
            $response = $client->post($url, $data);
            // url 为请求的路由, data为请求参数
            $result = $response->getBody()->getContents();
    

    参考博客文档

    相关文章

      网友评论

          本文标题:2021-04-19 使用Guzzle执行HTTP请求

          本文链接:https://www.haomeiwen.com/subject/vosilltx.html