ftp.php 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304
  1. <?php
  2. //帝国网站管理系统FTP
  3. define('InEmpireCMSFtp',TRUE);
  4. class EmpireCMSFTP{
  5. var $ftpconnectid;
  6. var $ftptranmode;
  7. function wipespecial($str){
  8. return str_replace(array("\n","\r"),array('',''),$str);
  9. }
  10. //链接
  11. function fconnect($ftphost,$ftpport,$ftpusername,$ftppassword,$ftppath,$ftpssl=0,$pasv=0,$tranmode=0,$timeout=0,$checkftp=0){
  12. $ftphost=$this->wipespecial($ftphost);
  13. $func=$ftpssl&&function_exists('ftp_ssl_connect')?'ftp_ssl_connect':'ftp_connect';
  14. $this->ftpconnectid=@$func($ftphost,$ftpport,20);
  15. if(!$this->ftpconnectid)
  16. {
  17. if($checkftp==1)
  18. {
  19. return 'HostFail';
  20. }
  21. echo"Fail to connect ftp host!";
  22. exit();
  23. }
  24. if($timeout&&function_exists('ftp_set_option'))
  25. {
  26. @ftp_set_option($this->ftpconnectid,FTP_TIMEOUT_SEC,$timeout);
  27. }
  28. $login=$this->fLogin($ftpusername,$ftppassword);
  29. if(!$login)
  30. {
  31. if($checkftp==1)
  32. {
  33. $this->fExit();
  34. return 'UserFail';
  35. }
  36. echo"The username/password for ftp is error!";
  37. $this->fExit();
  38. exit();
  39. }
  40. if($pasv)
  41. {
  42. $this->fPasv(TRUE);
  43. }
  44. $ftppath=empty($ftppath)?'/':$ftppath;
  45. $chdir=$this->fChdir($ftppath);
  46. if(!$chdir)
  47. {
  48. if($checkftp==1)
  49. {
  50. $this->fExit();
  51. return 'PathFail';
  52. }
  53. echo"The path for ftp is error!";
  54. $this->fExit();
  55. exit();
  56. }
  57. $this->ftptranmode=$tranmode?FTP_ASCII:FTP_BINARY;
  58. }
  59. //登录
  60. function fLogin($username,$password) {
  61. $username=$this->wipespecial($username);
  62. $password=$this->wipespecial($password);
  63. return @ftp_login($this->ftpconnectid,$username,$password);
  64. }
  65. //关闭ftp
  66. function fExit(){
  67. return @ftp_quit($this->ftpconnectid);
  68. }
  69. //链接模式
  70. function fPasv($pasv){
  71. return @ftp_pasv($this->ftpconnectid,$pasv);
  72. }
  73. //改变路径
  74. function fChdir($path){
  75. $path=$this->wipespecial($path);
  76. return @ftp_chdir($this->ftpconnectid,$path);
  77. }
  78. //建立目录
  79. function fMkdir($path){
  80. $path=$this->wipespecial($path);
  81. return @ftp_mkdir($this->ftpconnectid,$path);
  82. }
  83. //向服务器发送 SITE 命令
  84. function fSiteCmd($cmd){
  85. $cmd=$this->wipespecial($cmd);
  86. return @ftp_site($this->ftpconnectid,$cmd);
  87. }
  88. //设置目录权限
  89. function fChmoddir($mode,$filename){
  90. $mode=intval($mode);
  91. $filename=$this->wipespecial($filename);
  92. if(function_exists('ftp_chmod'))
  93. {
  94. return @ftp_chmod($this->ftpconnectid,$mode,$filename);
  95. }
  96. else
  97. {
  98. return $this->fSiteCmd('CHMOD '.$mode.' '.$filename);
  99. }
  100. }
  101. //删除目录
  102. function fRmdir($path){
  103. $path=$this->wipespecial($path);
  104. return @ftp_rmdir($this->ftpconnectid,$path);
  105. }
  106. //上传文件
  107. function fTranFile($hfile,$lfile,$startpos=0,$del=0){
  108. $hfile=$this->wipespecial($hfile);
  109. $lfile=$this->wipespecial($lfile);
  110. $startpos=intval($startpos);
  111. $tran=@ftp_put($this->ftpconnectid,$hfile,$lfile,$this->ftptranmode,$startpos);
  112. if($del)
  113. {
  114. DelFiletext($lfile);
  115. }
  116. return $tran;
  117. }
  118. //上传单文件(含建目录)
  119. function fTranPathFile($basepath,$path,$hfile,$lfile,$del=0){
  120. //建目录
  121. $this->ftp_mkdirs($basepath,$path);
  122. //上传文件
  123. $this->fTranFile($hfile,$lfile,0,$del);
  124. }
  125. //上传多文件
  126. function fMoreTranFile($hfile,$lfile,$del=0){
  127. $count=count($hfile);
  128. for($i=0;$i<$count;$i++)
  129. {
  130. $this->fTranFile($hfile[$i],$lfile[$i],0,$del);
  131. }
  132. }
  133. //上传多文件(含建目录)
  134. function fMoreTranPathFile($basepath,$path,$hfile,$lfile,$del=0){
  135. //建目录
  136. $this->ftp_mkdirs($basepath,$path);
  137. //上传文件
  138. $this->fMoreTranFile($hfile,$lfile,$del);
  139. }
  140. //下载文件
  141. function fGetFile($lfile,$hfile,$resumepos=0){
  142. $hfile=$this->wipespecial($hfile);
  143. $lfile=$this->wipespecial($lfile);
  144. $resumepos=intval($resumepos);
  145. return @ftp_get($this->ftpconnectid,$lfile,$hfile,$this->ftptranmode,$resumepos);
  146. }
  147. //文件大小
  148. function fSize($hfile){
  149. $hfile=$this->wipespecial($hfile);
  150. return @ftp_size($this->ftpconnectid,$hfile);
  151. }
  152. //删除文件
  153. function fDelFile($hfile){
  154. $hfile=$this->wipespecial($hfile);
  155. return @ftp_delete($this->ftpconnectid,$hfile);
  156. }
  157. //删除多文件
  158. function fMoreDelFile($hfile){
  159. $count=count($hfile);
  160. for($i=0;$i<$count;$i++)
  161. {
  162. $this->fDelFile($hfile[$i]);
  163. }
  164. }
  165. //重命名文件
  166. function fRename($oldfile,$newfile){
  167. $oldfile=$this->wipespecial($oldfile);
  168. $newfile=$this->wipespecial($newfile);
  169. return @ftp_rename($this->ftpconnectid,$oldfile,$newfile);
  170. }
  171. //获得当前路径
  172. function fPwd(){
  173. return @ftp_pwd($this->ftpconnectid);
  174. }
  175. //上传目录
  176. function ftp_copy($src_dir,$dst_dir){
  177. $src_dir=$this->wipespecial($src_dir);
  178. $dst_dir=$this->wipespecial($dst_dir);
  179. if(!$this->fChdir($dst_dir))
  180. {
  181. $this->fMkdir($dst_dir);
  182. }
  183. $d=@opendir($src_dir);
  184. while($file=@readdir($d))
  185. {
  186. if($file!= "."&&$file!="..")
  187. {
  188. if(is_dir($src_dir."/".$file))
  189. {
  190. $this->ftp_copy($src_dir."/".$file,$dst_dir."/".$file);
  191. }
  192. else
  193. {
  194. $this->fTranFile($dst_dir."/".$file,$src_dir."/".$file);
  195. }
  196. }
  197. }
  198. @closedir($d);
  199. }
  200. //返回目录的文件列表
  201. function fNlist($path) {
  202. $path=$this->wipespecial($path);
  203. return @ftp_nlist($this->ftpconnectid,$path);
  204. }
  205. //删除目录
  206. function ftp_rmAll($path,$flag=true){
  207. $path=$this->wipespecial($path);
  208. if($flag)
  209. {
  210. $ret=$this->fRmdir($path)||$this->fDelFile($path);
  211. }
  212. else
  213. {
  214. $ret=false;
  215. }
  216. if(!$ret)
  217. {
  218. $files=$this->fNlist($path);
  219. foreach($files as $values)
  220. {
  221. $values=basename($values);
  222. $dirfile=$path.'/'.$values;
  223. if($this->fSize($dirfile)==-1)
  224. {
  225. $this->fDelFile($dirfile);
  226. }
  227. else
  228. {
  229. $this->ftp_rmAll($dirfile,true);
  230. }
  231. }
  232. if($flag)
  233. {
  234. return $this->fRmdir($path);
  235. }
  236. else
  237. {
  238. return true;
  239. }
  240. }
  241. else
  242. {
  243. return $ret;
  244. }
  245. }
  246. //建多目录
  247. function ftp_mkdirs($basepath,$path){
  248. $basepath=$this->wipespecial($basepath);
  249. $path=$this->wipespecial($path);
  250. if(empty($path))
  251. {
  252. return '';
  253. }
  254. $r=explode('/',$path);
  255. $count=count($r);
  256. for($i=0;$i<$count;$i++)
  257. {
  258. if($i>0)
  259. {
  260. $returnpath.='/'.$r[$i];
  261. }
  262. else
  263. {
  264. $returnpath.=$r[$i];
  265. }
  266. $createpath=$basepath.$returnpath;
  267. if(!$this->fChdir($createpath))
  268. {
  269. $mk=$this->fMkdir($createpath);
  270. if(empty($mk))
  271. {
  272. printerror("CreatePathFail","");
  273. }
  274. }
  275. }
  276. }
  277. }
  278. ?>