cxycdz / curl

laravel模拟curl请求支持https

1.0 2016-09-23 14:58 UTC

This package is not auto-updated.

Last update: 2024-09-14 19:20:16 UTC


README

#安装

 php composer require cxycdz/curl

或者在你的composer.json中的require中加入

"cxycdz/curl":"~1.0"

执行更新命令

php composer update

#配置 在config/app.php的providers中配置

'providers' => [

     ...
        Cxycdz\Curl\CurlProvider::class,

#使用 在控制器中直接

   $curl=app('curl');
   $data=$curl->curl_http_get('http://www.cxycdz.cn');
   .....

更多文档请访问www.cxycdz.cn