当前位置:首页 > PHP教程 > php应用 > 列表

【swoole入门】如何快速创建一个web服务器

发布:smiling 来源: PHP粉丝网  添加日期:2020-03-05 16:06:39 浏览: 评论:0 

Swoole是一种PHP高级Web开发框架,可以提升网站的开发效率。本篇文章中小编将介绍如何用swoole创建web服务器,感兴趣的朋友可以来学习一下。

http_server.php

  1. $http = new swoole_http_server("0.0.0.0", 9501); 
  2.  
  3. // 请求监听事件 
  4.  
  5. $http->on('request'function ($request$response) { 
  6.  
  7.     var_dump($request->get, $request->post); 
  8.  
  9.     $response->header('Content-type''text/html;charset=utf-8'); 
  10.  
  11.     $response->end("<h1>Hello Swoole.#" . rand(1000, 9999) . "</h1>\n"); 
  12.  
  13. }); 
  14.  
  15. $http->start(); 

0.0.0.0 表示监听所有IP地址,一台服务器可能同时有多个IP,如127.0.0.1本地回环IP、192.168.1.100局域网IP、210.127.20.2 外网IP,这里也可以单独指定监听一个IP。

1.启动服务

$ /usr/local/php/bin/php http_server.php

2.启动服务成功后,netstat查看

  1. $ ps aux | grep http_server 
  2.  
  3. oosten     952  0.0  2.2 314544 23176 pts/3    Sl+  14:17   0:00 /usr/local/php/bin/php http_server.php 
  4.  
  5. oosten     953  0.0  0.4 240212  4132 pts/3    S+   14:17   0:00 /usr/local/php/bin/php http_server.php 
  6.  
  7. oosten     955  0.0  0.7 242620  7408 pts/3    S+   14:17   0:00 /usr/local/php/bin/php http_server.php   

3.模拟http请求

$ sudo curl http://127.0.0.1:9501?param=1<h1>Hello Swoole.#1061</h1>

服务端打印get/post请求数据

  1. $ /usr/local/php/bin/php http_server.php  
  2.  
  3. array(1) { 
  4.  
  5.   ["param"]=>  string(1) "1"
  6.  
  7. NULL 

4.结束进程

kill 952

Tags: swoole入门 web服务器

分享到: