yimuyangshu/http-client

v1.0.2 2022-11-03 02:24 UTC

This package is auto-updated.

Last update: 2025-07-05 11:19:16 UTC


README

#### httpClient
```php
    $http = new httpClient($url);
	
	$http->set_headers(Arr);
	
	// 设置body参数
    $http->set_body(""); 
	
    $http->set_param(Arr);
	
    $result = $http->post(); // or get();
```