# YurunHttp **Repository Path**: minibox/YurunHttp ## Basic Information - **Project Name**: YurunHttp - **Description**: 一个基于PHP cURL的开源HTTP类库,支持链式操作,省去繁杂的cURL使用方法。 - **Primary Language**: PHP - **License**: MIT - **Default Branch**: master - **Homepage**: https://github.com/Yurunsoft/YurunHttp - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 53 - **Created**: 2017-04-21 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # YurunHttp ## 简介 一个基于PHP cURL的开源HTTP类库,支持链式操作,省去繁杂的cURL使用方法。 ## 用法 ``` $http = HttpRequest::newSession(); $response = $http->get('http://www.baidu.com/'); var_dump($response); ``` 具体详见Demo