easyswoole / http-client
php stander lib
Installs: 91 119
Dependents: 36
Suggesters: 0
Security: 0
Stars: 6
Watchers: 1
Forks: 15
Open Issues: 2
pkg:composer/easyswoole/http-client
Requires
- php: >=7.1.0
 - easyswoole/spl: ^2.0
 
Requires (Dev)
- easyswoole/phpunit: ^1.0
 - easyswoole/swoole-ide-helper: ^1.2
 
This package is auto-updated.
Last update: 2025-10-07 08:50:43 UTC
README
安装
composer require easyswoole/http-client
单元测试
./vendor/bin/co-phpunit tests/
示例代码
namespace EasySwoole\HttpClient\Test;
use EasySwoole\HttpClient\HttpClient;
use PHPUnit\Framework\TestCase;
class Test extends TestCase
{
    /*
     * url内容请看 tests/index.php
     */
    private $url = 'http://docker.local.com/index.php?arg1=1&arg2=2';
    function testGet()
    {
        $client = new HttpClient($this->url);
        $response = $client->get();
        $json = json_decode($response->getBody(),true);
        $this->assertEquals("GET",$json['REQUEST_METHOD']);
        $this->assertEquals([],$json['POST']);
        $this->assertEquals(['arg1'=>1,'arg2'=>2],$json['GET']);
    }
    function testOptions()
    {
        $client = new HttpClient($this->url);
        $response = $client->options(['op'=>'op1'],['head'=>'head']);
        $json = json_decode($response->getBody(),true);
        $this->assertEquals("OPTIONS",$json['REQUEST_METHOD']);
        $this->assertEquals("head",$json['HEADER']['head']);
    }
    function testPost()
    {
        $client = new HttpClient($this->url);
        $response = $client->post([
            'post1'=>'post1'
        ]);
        $json = json_decode($response->getBody(),true);
        $this->assertEquals("POST",$json['REQUEST_METHOD']);
        $this->assertEquals([ 'post1'=>'post1'],$json['POST']);
        $this->assertEquals(['arg1'=>1,'arg2'=>2],$json['GET']);
    }
    function testPostString()
    {
        $client = new HttpClient($this->url);
        $response = $client->post('postStr');
        $json = json_decode($response->getBody(),true);
        $this->assertEquals("POST",$json['REQUEST_METHOD']);
        $this->assertEquals([],$json['POST']);
        $this->assertEquals('postStr',$json['RAW']);
    }
    function testPostJson()
    {
        $client = new HttpClient($this->url);
        $response = $client->postJson(json_encode(['json'=>'json1']));
        $json = json_decode($response->getBody(),true);
        $this->assertEquals("POST",$json['REQUEST_METHOD']);
        $this->assertEquals([],$json['POST']);
        $this->assertEquals(['arg1'=>1,'arg2'=>2],$json['GET']);
        $raw = $json["RAW"];
        $raw = json_decode($raw,true);
        $this->assertEquals(['json'=>'json1'],$raw);
    }
    function testPostFile()
    {
        $client = new HttpClient($this->url);
        $response = $client->post([
            'post1'=>'post1',
            'file'=> new \CURLFile(__FILE__)
        ]);
        $json = json_decode($response->getBody(),true);
        $this->assertEquals("POST",$json['REQUEST_METHOD']);
        $this->assertEquals([ 'post1'=>'post1'],$json['POST']);
        $this->assertEquals(['arg1'=>1,'arg2'=>2],$json['GET']);
        $this->assertEquals('Test.php',$json['FILE']['file']['name']);
    }
    function testCookies()
    {
        $client = new HttpClient($this->url);
        $client->addCookies([
            'cookie1'=>'cook'
        ]);
        $response = $client->get(['head'=>'head']);
        $json = json_decode($response->getBody(),true);
        $this->assertEquals("GET",$json['REQUEST_METHOD']);
        $this->assertEquals("head",$json['HEADER']['head']);
        $this->assertEquals("cook",$json['COOKIE']['cookie1']);
    }
    function testPostXml()
    {
        $client = new HttpClient($this->url);
        $response = $client->postXml('<xml></xml>');
        $json = json_decode($response->getBody(),true);
        $this->assertEquals('<xml></xml>',$json['RAW']);
    }
}
支持方法
- __construct
 - setUrl
 - setEnableSSL
 - setTimeout
 - setConnectTimeout
 - setKeepAlive
 - setSslVerifyPeer
 - setSslHostName
 - setSslCafile
 - setSslCapath
 - setSslCertFile
 - setSslKeyFile
 - setProxyHttp
 - setProxySocks5
 - setSocketBind
 - setClientSetting
 - setClientSettings
 - getClient
 - setMethod
 - setXMLHttpRequest
 - setContentTypeJson
 - setContentTypeXml
 - setContentTypeFormData
 - setContentTypeFormUrlencoded
 - setContentType
 - get
 - head
 - trace
 - delete
 - put
 - post
 - patch
 - options
 - postXml
 - postJson
 - download
 - setHeaders
 - setHeader
 - addCookies
 - addCookie
 - upgrade
 - push
 - recv
 - __destruct