FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
framework/examples/fastcgi_server.php at master · metlive/framework · GitHub
metlive
/
framework
Public
forked from
whcyc2002/swoole_framework
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
framework
/
examples
/
fastcgi_server.php
Copy path
More file actions
More file actions
Latest commit
History
History
History
35 lines (27 loc) · 925 Bytes
Breadcrumbs
framework
/
examples
/
fastcgi_server.php
Copy path
File metadata and controls
35 lines (27 loc) · 925 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<?php
define
(
'
DEBUG
'
,
'
on
'
);
define
(
"
WEBPATH
"
,
realpath
(
__DIR__
.
'
/../
'
));
require
__DIR__
.
'
/../libs/lib_config.php
'
;
Swoole
\Config::
$
debug
=
false
;
Swoole
\Error::
$
echo_html
=
true
;
class
MyFastCGI
extends
Swoole
\
Protocol
\FastCGI
{
function
onRequest
(
Swoole
\
Request
$
request
)
{
$
response
=
new
Swoole
\
Response
;
$
response
->
body
=
"
hello world
"
;
return
$
response
;
}
}
$
AppSvr
=
new
MyFastCGI
();
$
AppSvr
->
setLogger
(
new
\
Swoole
\
Log
\
EchoLog
(
true
));
/**
* 如果你没有安装swoole扩展,这里还可选择
* BlockTCP 阻塞的TCP,支持windows平台
* SelectTCP 使用select做事件循环,支持windows平台
* EventTCP 使用libevent,需要安装libevent扩展
*/
$
server
=
new
\
Swoole
\
Network
\
SelectTCP
(
'
0.0.0.0
'
,
9001
);
$
server
->
setProtocol
(
$
AppSvr
);
//$server->daemonize(); //作为守护进程
$
server
->
run
(
array
(
'
worker_num
'
=>
1
,
'
max_request
'
=>
5000
,
'
log_file
'
=>
'
/tmp/swoole.log
'
));
Back
|
FazBrowse Home
|
New Git URL