<?php //创建web服务器 $serv=new swoole_http_server(‘0.0.0.0‘,9501); //获取请求 /* * $request:请求信息 * $response:响应信息 */ $serv->on(‘request‘,function($request,$response){ var_dump($request); //设置返回的头信息 $response->header("Content-Type","text/html;charset=utf-8"); //发送信息 $response->end("hello world ".rand(100,900)); }); $serv->start(); //启动服务器 //php index.php //ps -ajft //service iptables stop //关闭防火墙 ?>