ftp.php
6.44 KB
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
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
<?php
//帝國網站管理系統FTP
define('InEmpireCMSFtp',TRUE);
class EmpireCMSFTP{
var $ftpconnectid;
var $ftptranmode;
function wipespecial($str){
return str_replace(array("\n","\r"),array('',''),$str);
}
//鏈接
function fconnect($ftphost,$ftpport,$ftpusername,$ftppassword,$ftppath,$ftpssl=0,$pasv=0,$tranmode=0,$timeout=0,$checkftp=0){
$ftphost=$this->wipespecial($ftphost);
$func=$ftpssl&&function_exists('ftp_ssl_connect')?'ftp_ssl_connect':'ftp_connect';
$this->ftpconnectid=@$func($ftphost,$ftpport,20);
if(!$this->ftpconnectid)
{
if($checkftp==1)
{
return 'HostFail';
}
echo"Fail to connect ftp host!";
exit();
}
if($timeout&&function_exists('ftp_set_option'))
{
@ftp_set_option($this->ftpconnectid,FTP_TIMEOUT_SEC,$timeout);
}
$login=$this->fLogin($ftpusername,$ftppassword);
if(!$login)
{
if($checkftp==1)
{
$this->fExit();
return 'UserFail';
}
echo"The username/password for ftp is error!";
$this->fExit();
exit();
}
if($pasv)
{
$this->fPasv(TRUE);
}
$ftppath=empty($ftppath)?'/':$ftppath;
$chdir=$this->fChdir($ftppath);
if(!$chdir)
{
if($checkftp==1)
{
$this->fExit();
return 'PathFail';
}
echo"The path for ftp is error!";
$this->fExit();
exit();
}
$this->ftptranmode=$tranmode?FTP_ASCII:FTP_BINARY;
}
//登錄
function fLogin($username,$password) {
$username=$this->wipespecial($username);
$password=$this->wipespecial($password);
return @ftp_login($this->ftpconnectid,$username,$password);
}
//關閉ftp
function fExit(){
return @ftp_quit($this->ftpconnectid);
}
//鏈接模式
function fPasv($pasv){
return @ftp_pasv($this->ftpconnectid,$pasv);
}
//改變路徑
function fChdir($path){
$path=$this->wipespecial($path);
return @ftp_chdir($this->ftpconnectid,$path);
}
//建立目錄
function fMkdir($path){
$path=$this->wipespecial($path);
@ftp_mkdir($this->ftpconnectid,$path);
}
//向服務器發送 SITE 命令
function fSiteCmd($cmd){
$cmd=$this->wipespecial($cmd);
return @ftp_site($this->ftpconnectid,$cmd);
}
//設置目錄權限
function fChmoddir($mode,$filename){
$mode=intval($mode);
$filename=$this->wipespecial($filename);
if(function_exists('ftp_chmod'))
{
return @ftp_chmod($this->ftpconnectid,$mode,$filename);
}
else
{
return $this->fSiteCmd('CHMOD '.$mode.' '.$filename);
}
}
//刪除目錄
function fRmdir($path){
$path=$this->wipespecial($path);
return @ftp_rmdir($this->ftpconnectid,$path);
}
//上傳文件
function fTranFile($hfile,$lfile,$startpos=0,$del=0){
$hfile=$this->wipespecial($hfile);
$lfile=$this->wipespecial($lfile);
$startpos=intval($startpos);
$tran=@ftp_put($this->ftpconnectid,$hfile,$lfile,$this->ftptranmode,$startpos);
if($del)
{
DelFiletext($lfile);
}
return $tran;
}
//上傳單文件(含建目錄)
function fTranPathFile($basepath,$path,$hfile,$lfile,$del=0){
//建目錄
$this->ftp_mkdirs($basepath,$path);
//上傳文件
$this->fTranFile($hfile,$lfile,0,$del);
}
//上傳多文件
function fMoreTranFile($hfile,$lfile,$del=0){
$count=count($hfile);
for($i=0;$i<$count;$i++)
{
$this->fTranFile($hfile[$i],$lfile[$i],0,$del);
}
}
//上傳多文件(含建目錄)
function fMoreTranPathFile($basepath,$path,$hfile,$lfile,$del=0){
//建目錄
$this->ftp_mkdirs($basepath,$path);
//上傳文件
$this->fMoreTranFile($hfile,$lfile,$del);
}
//下載文件
function fGetFile($lfile,$hfile,$resumepos=0){
$hfile=$this->wipespecial($hfile);
$lfile=$this->wipespecial($lfile);
$resumepos=intval($resumepos);
return @ftp_get($this->ftpconnectid,$lfile,$hfile,$this->ftptranmode,$resumepos);
}
//文件大小
function fSize($hfile){
$hfile=$this->wipespecial($hfile);
return @ftp_size($this->ftpconnectid,$hfile);
}
//刪除文件
function fDelFile($hfile){
$hfile=$this->wipespecial($hfile);
return @ftp_delete($this->ftpconnectid,$hfile);
}
//刪除多文件
function fMoreDelFile($hfile){
$count=count($hfile);
for($i=0;$i<$count;$i++)
{
$this->fDelFile($hfile[$i]);
}
}
//重命名文件
function fRename($oldfile,$newfile){
$oldfile=$this->wipespecial($oldfile);
$newfile=$this->wipespecial($newfile);
return @ftp_rename($this->ftpconnectid,$oldfile,$newfile);
}
//獲得當前路徑
function fPwd(){
return @ftp_pwd($this->ftpconnectid);
}
//上傳目錄
function ftp_copy($src_dir,$dst_dir){
$src_dir=$this->wipespecial($src_dir);
$dst_dir=$this->wipespecial($dst_dir);
if(!$this->fChdir($dst_dir))
{
$this->fMkdir($dst_dir);
}
$d=@opendir($src_dir);
while($file=@readdir($d))
{
if($file!= "."&&$file!="..")
{
if(is_dir($src_dir."/".$file))
{
$this->ftp_copy($src_dir."/".$file,$dst_dir."/".$file);
}
else
{
$this->fTranFile($dst_dir."/".$file,$src_dir."/".$file);
}
}
}
@closedir($d);
}
//返回目錄的文件列表
function fNlist($path) {
$path=$this->wipespecial($path);
return @ftp_nlist($this->ftpconnectid,$path);
}
//刪除目錄
function ftp_rmAll($path,$flag=true){
$path=$this->wipespecial($path);
if($flag)
{
$ret=$this->fRmdir($path)||$this->fDelFile($path);
}
else
{
$ret=false;
}
if(!$ret)
{
$files=$this->fNlist($path);
foreach($files as $values)
{
$values=basename($values);
$dirfile=$path.'/'.$values;
if($this->fSize($dirfile)==-1)
{
$this->fDelFile($dirfile);
}
else
{
$this->ftp_rmAll($dirfile,true);
}
}
if($flag)
{
return $this->fRmdir($path);
}
else
{
return true;
}
}
else
{
return $ret;
}
}
//建多目錄
function ftp_mkdirs($basepath,$path){
$basepath=$this->wipespecial($basepath);
$path=$this->wipespecial($path);
if(empty($path))
{
return '';
}
$r=explode('/',$path);
$count=count($r);
for($i=0;$i<$count;$i++)
{
if($i>0)
{
$returnpath.='/'.$r[$i];
}
else
{
$returnpath.=$r[$i];
}
$createpath=$basepath.$returnpath;
if(!$this->fChdir($createpath))
{
$mk=$this->fMkdir($createpath);
if(empty($mk))
{
printerror("CreatePathFail","");
}
}
}
}
}
?>