PHP提供HTTP客户端库(cURL、GuzzleHttp)进行HTTP请求发送,还支持创建HTTP服务器(如Swoole)。实战案例包括使用cURL从API获取数据以及利用Swoole创建自定义HTTP服务器处理表单数据。
PHP高级特性:HTTP客户端与服务器实战
HTTP客户端
PHP内置了cURL和GuzzleHttp等库,可用于创建HTTP请求。以下是如何使用GuzzleHttp发送GET请求:
use GuzzleHttp\Client; $client = new Client(); $response = $client->get('https://example.com'); // 检索响应状态码 $statusCode = $response->getStatusCode(); // 检索响应正文 $body = $response->getBody()->getContents();
HTTP服务器
PHP还允许您创建HTTP服务器。以下是一个简单的基于Swoole的服务器示例:
use Swoole\Http\Server; $server = new Server('0.0.0.0', 8811); $server->on('request', function (Swoole\Http\Request $request, Swoole\Http\Response $response) { $response->header('Content-Type', 'text/plain'); $response->end('Hello World!'); }); $server->start();
实战案例:API请求
以下是一个使用cURL从外部API检索数据的实战案例:
<?php $curl = curl_init(); curl_setopt_array($curl, [ CURLOPT_URL => 'https://api.example.com/v1/users', CURLOPT_RETURNTRANSFER => true, ]); $response = curl_exec($curl); curl_close($curl); $data = json_decode($response); // 处理$data ?>
实战案例:自定义HTTP服务器
以下是一个使用Swoole创建自定义HTTP服务器进行简单的表单处理的实战案例:
<?php use Swoole\Http\Server; use Swoole\Http\Request; $server = new Server('0.0.0.0', 8812); $server->on('request', function (Request $request, Swoole\Http\Response $response) { // 处理POST数据 $post = $request->post; // 根据要执行的操作创建响应 if ($post['action'] === 'create') { // 处理创建操作 } elseif ($post['action'] === 'update') { // 处理更新操作 } // 发送响应 $response->end('操作完成'); }); $server->start(); ?>
以上是PHP高级特性:HTTP客户端与服务器实战的详细内容。更多信息请关注PHP中文网其他相关文章!