FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
framework/examples/ftp_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
/
ftp_server.php
Copy path
More file actions
More file actions
Latest commit
History
History
History
21 lines (18 loc) · 532 Bytes
Breadcrumbs
framework
/
examples
/
ftp_server.php
Copy path
File metadata and controls
21 lines (18 loc) · 532 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
<?php
define
(
'
DEBUG
'
,
'
on
'
);
define
(
"
WEBPATH
"
,
realpath
(
__DIR__
.
'
/../
'
));
require
__DIR__
.
'
/../libs/lib_config.php
'
;
$
ftpSvr
=
new
Swoole
\
Protocol
\
FtpServer
();
$
ftpSvr
->
users
[
'
test
'
] =
array
(
'
password
'
=>
'
test
'
,
'
home
'
=>
'
/tmp/
'
,
'
chroot
'
=>
true
,
);
//$ftpSvr->users['anonymous'] = array(
// 'password' => 'anon@localhost',
// 'home' => '/tmp/',
// 'chroot' => true,
//);
$
server
=
Swoole
\
Network
\Server::
autoCreate
(
'
0.0.0.0
'
,
21
);
$
server
->
setProtocol
(
$
ftpSvr
);
$
server
->
run
(
array
(
'
worker_num
'
=>
1
));
Back
|
FazBrowse Home
|
New Git URL