fps2tao/httplib

A http request,php请求类库

1.0 2017-11-12 12:58 UTC

This package is not auto-updated.

Last update: 2025-08-03 07:04:40 UTC


README

php的网页请求类,非本人所写,只是为了composer依赖。才放出仓库里的

Composer.josn

"require": {"fps2tao/httplib": "^1.0"} ---Project

"autoload": {"psr-4": {"Http\Httplib\":"vendor/fps2tao/httplib/src/"}} ---library

其实运行了composer require fps2tao/httplib命令上面的不用配置

Example

$url = "http://www.xx.com";

$http = new \Http\Httplib($url);

$http->send();

$webHtml = $http->response();

echo $webHtml;


...