# PHPPost **Repository Path**: jiusem/PHPPost ## Basic Information - **Project Name**: PHPPost - **Description**: 简化PHP发送POST请求的类库,基于cURL开发。 - **Primary Language**: PHP - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2015-11-25 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ####PHPPost 一个简化PHP发送POST、PUT、DELETE请求的类库~ ####更新时间 2015-11-25 ####使用 发送POST请求: ```php 'crazymus', 'age' => 20 ); $url = 'http://www.test.com'; $result = PHPPost::post($url, $data); //模拟表单 $result = PHPPost::post($url, $data, 'form'); ?> ``` 发送PUT请求: ```php ``` 发送DELETE请求: ```php ```