mindfulindustries/php-http-transport

此包已被废弃,不再维护。未建议替代包。

简单的 PHP Guzzle 封装。

v2.1.1 2019-09-20 17:21 UTC

This package is auto-updated.

Last update: 2022-10-21 16:22:48 UTC


README

Zttp 启发的简单的 PHP Guzzle 封装。

Build Status

安装

composer require mindfulindustries/php-http-transport

无超时使用

$response = \MindfulIndustries\Support\Transport\Http::get('http://example.com', [
   'foo' => 'bar'
]);

带超时使用

try {
    $response = \MindfulIndustries\Support\Transport\Http::timeout(5)->post('http://your.domain', [
        'foo' => 'bar'
    ]);
} catch (\MindfulIndustries\Support\Transport\ConnectionException $e) {
    // timed out ..
}