net / http
基本的 HTTP 客户端
1.1.1
2023-01-30 12:24 UTC
Requires (Dev)
- phpunit/phpunit: ^9.5
This package is not auto-updated.
Last update: 2024-09-14 14:56:01 UTC
README
提供一个基本的 HTTP 客户端,该客户端封装了 PHP cURL 扩展。
发送 GET 请求
$client = new Net_Http_Client(); $client->get("http://bigcommerce.com/"); $body = $client->getBody(); $contentType = $client->getHeader("Content-Type");
发送 POST 请求
$client = new Net_Http_Client(); $client->post("http://bigcommerce.com/contact.php", array("key"=>"value")); $responseCode = $client->getStatus(); if ($responseCode != 200) { // the request returned an error response }