赞
踩
$http = new swoole_http_server("0.0.0.0", 9501); $http->set( [ 'enable_static_handler'=>true, 'document_root'=>'/data/apps/operation/abc' ] ); $http->on('request', function ($request, $response) { $response->end("<h1>Hello Swoole. #".rand(1000, 9999)."</h1>".json_encode($request->get)); }); $http->start();
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。