antonvolkov/php-simple-rest-client

PHP 简单 rest-api 客户端

0.7 2017-08-20 13:51 UTC

This package is not auto-updated.

Last update: 2024-09-26 00:29:49 UTC


README

PHP 简单 rest-api 客户端

安装

$ php composer.phar require antonvolkov/php-simple-rest-client

基本用法

$get = SimpleRestClient::get("https://httpbin.org/get", ["asd" => 123, "zxc" => 456]);

$post = SimpleRestClient::post("https://httpbin.org/post", ['asd' => 'test'], ['Content-Type' => 'application/json']);