Skip to content

Latest commit

 

History

History
20 lines (14 loc) · 371 Bytes

README.md

File metadata and controls

20 lines (14 loc) · 371 Bytes

php 使用curl扩展实现http请求

download

	composer require monkey92/httpclient

how to use

	use Monkey92\HttpClient;
	$httpUtil = HttpUtil::getInstance();
	//get
	$get_ret = $httpUtil->doGet('http://www.domain.com/user?id=1');
	//post
	$post_ret = $httpUtil->doPost('http://www.domain.com/save_user',['name'=>'Tom','age'=>100]);