romanpitak/php-rest-client

REST 客户端库。

v1.2.1 2015-02-19 15:32 UTC

This package is not auto-updated.

Last update: 2024-09-10 01:44:18 UTC


README

Latest Stable Version Total Downloads License Code Climate Codacy Badge

(c) 2014-2015 Roman Piták, http://pitak.net roman@pitak.net

表示性状态转移(REST)的PHP客户端库。

安装

最佳安装方式是使用 Composer 依赖管理器。

php composer.phar require romanpitak/php-rest-client

基本用法

$client = new Client('https://raw.githubusercontent.com/romanpitak');

$request = $client->newRequest('/PHP-REST-Client/master/README.md');

$response = $request->getResponse();

echo $response->getParsedResponse();