-
Notifications
You must be signed in to change notification settings - Fork 23
/
ftp.php
258 lines (228 loc) · 5.61 KB
/
ftp.php
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
<?php
/**
* FTP基本操作
* @作者 qinggan <[email protected]>
* @主页 https://www.phpok.com
* @版本 6.x
* @授权 MIT License <https://www.phpok.com/mit.html>
* @时间 2013年2月18日
* @更新 2023年7月20日
**/
/**
* 安全限制,防止直接访问
**/
if(!defined("PHPOK_SET")){
exit("<h1>Access Denied</h1>");
}
class ftp_lib extends _init_lib
{
var $hostname = ''; # FTP服务器
var $username = ''; # FTP账号
var $password = ''; # FTP密码
var $port = 21; # 连接端口
var $passive = true; # 是否使用被动模式
var $conn_id = false; # 连接ID
var $root_dir = "/"; # 服务器根目录
var $timeout = 60; # FTP连接超时时间
# 构造函数,此参数在PHPOK中极少使用或是不使用
function __construct() {}
# 设置FTP服务器信息
function hostname($hostname="")
{
if(!$hostname) return false;
$hostname = preg_replace('|.+?://|','',$hostname);
$this->hostname = $hostname;
}
# 设置登录账号
function username($username="Anonymous")
{
$this->username = $username;
}
# 设置登录密码
function password($password="")
{
$this->password = $password;
}
# 设置FTP的端口
function port($port=21)
{
$this->port = 21;
}
# 设置根目录
function root_dir($root_dir="/")
{
$this->root_dir = $root_dir;
}
function connect($config = array())
{
$this->init($config);
if(!$this->hostname)
{
return false;
}
# 连接FTP信息
$this->conn_id = @ftp_connect($this->hostname,$this->port,$this->timeout);
if(!$this->conn_id) return false;
# FTP登录
$login_status = $this->login();
if(!$login_status) return false;
# 启用被动模式
if($this->passive) ftp_pasv($this->conn_id, true);
return true;
# 改变目录
$dir_status = $this->change_dir($this->root_dir);
}
# 改变目录
function change_dir($path='')
{
if(!$path || !$this->is_conn()) return false;
$status = @ftp_chdir($this->conn_id,$path);
if(!$status) return false;
return true;
}
# 创建目录
function make_dir($path,$chmod=null)
{
if(!$path || !$this->is_conn()) return false;
$status = @ftp_mkdir($this->conn_id,$path);
if(!$status) return false;
if(!is_null($chmod))
{
$this->chmod($path,(int)$chmod);
}
return true;
}
# 更改目录权限
function chmod($path,$chmod)
{
if(!$this->is_conn || !$path || !$chmod) return false;
return @ftp_chmod($this->conn_id, $chmod, $path);
}
# 上传
function upload($local,$remote,$mode="auto",$chmod=null)
{
if(!$this->is_conn() || !$local || !file_exists($local) || !$remote) return false;
if($mode == "auto")
{
$ext = $this->get_ext($local);
$mode = $this->set_type($ext);
}
$mode = ($mode == 'ascii') ? FTP_ASCII : FTP_BINARY;
if(substr($this->root_dir,-1) != "/") $this->root_dir .= "/";
$remote = $this->root_dir . $remote;
$status = @ftp_put($this->conn_id, $remote, $local, $mode);
if(!$status) return false;
if( ! is_null($chmod))
{
$this->chmod($remote,(int)$chmod);
}
return true;
}
# 下载
function download($remote,$local,$mode="auto")
{
if(!$this->is_conn() || !$local || !file_exists($local) || !$remote) return false;
if($mode == 'auto')
{
$ext = $this->get_ext($remote);
$mode = $this->set_type($ext);
}
$mode = ($mode == 'ascii') ? FTP_ASCII : FTP_BINARY;
return @ftp_get($this->conn_id, $local, $remote, $mode);
}
# 重命名
function rename($old,$new)
{
if(!$old || !$new || !$this->is_conn()) return false;
return @ftp_rename($this->conn_id, $oldname, $newname);
}
# 移动
function move($old,$new)
{
return $this->rename($old,$new);
}
# 删除文件
function delete($file)
{
if(!$file || !$this->is_conn()) return false;
return @ftp_delete($this->conn_id, $file);
}
# 删除文件夹
function delete_dir($path)
{
if(!$path || !$this->is_conn()) return false;
$path = preg_replace("/(.+?)\/*$/", "\\1/", $path);
//获取目录文件列表
$filelist = $this->filelist($path);
if($filelist && is_array($filelist) && count($filelist) > 0)
{
foreach($filelist AS $item)
{
if(!$this->delete($item))
{
$this->delete_dir($item);
}
}
}
return @ftp_rmdir($this->conn_id, $path);
}
# 取得文件夹列表
function filelist($path = '.')
{
if(!$path || ! $this->is_conn()) return false;
return ftp_nlist($this->conn_id, $path);
}
# 关闭FTP连接
function close()
{
if(!$this->is_conn()) return false;
return @ftp_close($this->conn_id);
}
# FTP参数初始化
function init($config = array())
{
foreach($config as $key => $val)
{
if(isset($this->$key))
{
$this->$key = $val;
}
}
//特殊字符过滤
if($this->hostname)
{
$this->hostname = preg_replace('|.+?://|','',$this->hostname);
}
}
# FTP登录
function login()
{
return @ftp_login($this->conn_id, $this->username, $this->password);
}
# 判断是否连接
function is_conn()
{
if( ! is_resource($this->conn_id))
{
return false;
}
return true;
}
# 取得文件后缀名
function get_ext($filename)
{
if(FALSE === strpos($filename, '.'))
{
return 'txt';
}
$extarr = explode('.', $filename);
return strtolower(end($extarr));
}
# 从后缀扩展定义FTP传输模式 ascii 或 binary
function set_type($ext)
{
$text_type = array ('txt','text','php','phps','php4','js','css','htm','html','phtml','shtml','log','xml');
return (in_array($ext, $text_type)) ? 'ascii' : 'binary';
}
}
?>