yimuyangshu/http-client

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

This package is auto-updated.

Last update: 2024-09-05 09:21:51 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();
```