>  기사  >  백엔드 개발  >  FTP 업로드 파일을 위한 PHP 스크립트

FTP 업로드 파일을 위한 PHP 스크립트

WBOY
WBOY원래의
2016-07-25 08:42:49751검색
대략적인 원리 프로젝트에서 제외되지 않은 모든 파일을 반복하고 文件修改时间晚于文件上一次修改时间에 대한 파일을 가져옵니다. 그런 다음 FTP를 통해 해당 파일을 해당 디렉토리에 업로드하십시오. 구체적인 코드는 다음과 같습니다.

도구일 뿐이라 코드가 너무 지저분하네요 죄송합니다

  1. error_reporting(7);
  2. if ($_SERVER['SERVER_ADDR'])exit;//웹 서버에서 실행이 금지됩니다
  3. $_GET['exclude'] = array('number.txt','uploads','Zend','docs','cache','You','managesdk') //전역으로 정의된 업로드 디렉터리 제외 Variable
  4. $fileobj = new FilerFile();
  5. $path = "/data/longtu/"; //프로젝트 디렉토리의 루트 디렉토리
  6. $files = $fileobj->Zip($path ); //최근 수정된 파일 필터링
  7. $path = str_replace("/data/longtu/","",$path);
  8. $config = array(
  9. 'hostname' => 'xxx .xxx.xx.xxx', //ftp 서버 주소
  10. 'username' => 'xxx', //ftp 사용자
  11. 'password' => '?xxxxxxxxxxx', //ftp 비밀번호
  12. 'port' => 21 //포트
  13. );
  14. $ftp = new Ftp();
  15. $ftp->connect($config); //링크 서버 $a=$ftp->filelist();
  16. $LOCAL_ROOT = realpath(dirname(__DIR__)."/../../");
  17. chdir($LOCAL_ROOT);
  18. foreach( $files as $k=>$v){
  19. $f = $path.$v;
  20. $tmp = $ftp->upload($f, $f);
  21. if($ tmp){
  22. echo "$f 업로드 -> 성공 n";
  23. }
  24. }
  25. //$ftp->download('ftp_upload.log','ftp_download.log') ;
  26. //
  27. //$ftp->upload('ftp_err.log','ftp_upload.log');
  28. //$ftp->download('ftp_upload.log',' ftp_download.log');
  29. /*
  30. *
  31. *
  32. * $dir = "/test";
  33. if(@ftp_chdir($conn, $dir))
  34. 판단 폴더인가요? $fctimes = array();
  35. function Zip($dir)
  36. {
  37. $this->time_path = rtrim($dir,"/")."/.~~ ~time.php" ;
  38. //@unlink($this->time_path);
  39. $filelist = $this -> GetFileList($dir);
  40. file_put_contents($this->time_path ,"fctimes,true).";");
  41. return $filelist;
  42. }
  43. function appendFiletime($file)
  44. {
  45. $ time_file_path = $this->time_path;
  46. $ftime = @include($time_file_path);
  47. $ftime = $ftime ? $ftime : array();
  48. $time = filectime ($file);
  49. if(!file_exists($time_file_path))file_put_contents($time_file_path," }
  50. function getFileByFiletime($file)
  51. {
  52. static $time_data;
  53. $time_file_path = $this->time_path;
  54. if (!$time_data){
  55. $time_data= @include_once($time_file_path);
  56. }
  57. $time_data = $time_data ? $ time_data : array();
  58. //var_dump($file,$time_data[$file] == filectime($file));
  59. //echo $file."t".$ time_data[$file] ."n";
  60. if ($time_data[$file] == filemtime($file)){
  61. return false;
  62. }else{
  63. return $file;
  64. }
  65. }
  66. function GetFileList($dir,$path="")
  67. {
  68. static $tmpp = "";
  69. if ($path=="" && !$ tmpp){
  70. $tmpp = $dir;
  71. }
  72. $d = dir($dir);
  73. $files = array();
  74. if ($d)
  75. {
  76. $pathP =str_replace($tmpp,"",$dir);
  77. $pathP=str_replace(array("\\","/"),DIRECTORY_SEPARATOR,$pathP);
  78. $pathP= str_replace(DIRECTORY_SEPARATOR.DIRECTORY_SEPARATOR ,DIRECTORY_SEPARATOR,$pathP);
  79. while($f = $d->read())
  80. {
  81. if ($f == '.' || $f= ='..' || $f{0}=='.' || $f=='Zend' || in_array($f, $_GET['exclude']))계속;
  82. $newdir = rtrim($dir, "/")."/".$f;
  83. if (is_dir($newdir)){
  84. $files = array_merge($files,$this->GetFileList($newdir, $newdir));
  85. }else{
  86. $abspath_file = (rtrim($dir,"/") ? rtrim($dir,"/")."/" : "").$f;
  87. $this- >fctimes[$abspath_file] = filemtime($abspath_file);
  88. if (!$this->getFileByFiletime($abspath_file))continue;
  89. $file = (rtrim($pathP, "/") ? rtrim($pathP,"/")."/" : "").$f;
  90. $files[] = $file;
  91. }
  92. }
  93. }
  94. $files 반환 ;
  95. }
  96. }
  97. /**
  98. * CodeIgniter의 FTP 클래스 모방
  99. * 기본 FTP 작업:
  100. * 1) 로그인; 연결
  101. * 2) 현재 디렉터리 파일 목록
  102. * 3) 디렉터리 변경; > * 4) 이름 바꾸기/이동, 이름 바꾸기
  103. * 5) mkdir
  104. * 6) 삭제; delete_dir/delete_file
  105. * 7) 업로드; 다운로드
  106. *
  107. * @author quanshuidingdang
  108. */
  109. class Ftp {
  110. private $hostname = '';
  111. private $username = '';
  112. private $password = '';
  113. private $port = 21;
  114. private $passive = TRUE;
  115. private $debug = TRUE;
  116. private $conn_id = FALSE;
  117. /**
  118. * 생성자
  119. *
  120. * @param array 구성 배열: $config = array('hostname'=>'','username'=>'','password'=>' ' ,'포트'=>''...);
  121. */
  122. 공용 함수 __construct ($config = array()) {
  123. if(count($config) > 0) {
  124. $this->_init($config);
  125. }
  126. }
  127. / **
  128. * FTP 연결
  129. *
  130. * @access public
  131. * @param 배열 구성 배열
  132. * @return boolean
  133. */
  134. 공용 함수 connect($config = array()) {
  135. if(count($config) > 0) {
  136. $this->_init($config) ;
  137. }
  138. if(FALSE === ($this->conn_id = @ftp_connect($this->hostname,$this->port))) {
  139. if($this- >debug === TRUE) {
  140. $this->_error("ftp_unable_to_connect");
  141. }
  142. return FALSE;
  143. }
  144. if( ! $this->_login ()) {
  145. if($this->debug === TRUE) {
  146. $this->_error("ftp_unable_to_login");
  147. }
  148. return FALSE;
  149. }
  150. if($this->passive === TRUE) {
  151. ftp_pasv($this->conn_id, TRUE);
  152. }
  153. return TRUE;
  154. }
  155. / **
  156. * 폴더 존재 여부
  157. * @paramknown_type $path
  158. */
  159. 공개 함수 is_dir_exists($path)
  160. {
  161. return $this->chgdir($path);
  162. }
  163. /**
  164. * 디렉터리 변경
  165. *
  166. * @access public
  167. * @param 문자열 디렉터리 식별(ftp)
  168. * @param boolean
  169. * @return boolean
  170. * /
  171. 공용 함수 chgdir($path = '', $supress_debug = FALSE) {
  172. if($path == '' OR ! $this->_isconn()) {
  173. return FALSE;
  174. }
  175. $result = @ftp_chdir($this->conn_id, $path);
  176. if($result === 거짓) {
  177. if($this->debug === TRUE AND $supress_debug == FALSE) {
  178. $this->_error("ftp_unable_to_chgdir:dir[".$path."]") ;
  179. }
  180. FALSE 반환;
  181. }
  182. TRUE 반환;
  183. }
  184. /**
  185. * 디렉터리 생성
  186. *
  187. * @access public
  188. * @param 문자열 디렉터리 식별(ftp)
  189. * @param int 파일 권한 목록
  190. * @return 부울
  191. */
  192. 공용 함수 mkdir($path = '', $ 권한 = NULL) {
  193. if($path == '' OR ! $this->_isconn()) {
  194. return FALSE;
  195. }
  196. $result = @ftp_mkdir($this- >conn_id, $path);
  197. if($result === FALSE) {
  198. if($this->debug === TRUE) {
  199. $this->_error("ftp_unable_to_mkdir :dir[".$path."]");
  200. }
  201. return FALSE;
  202. }
  203. if( ! is_null($permissions)) {
  204. $this->chmod( $path,(int)$permissions);
  205. }
  206. return TRUE;
  207. }
  208. /**
  209. * 업로드
  210. *
  211. * @access public
  212. * @param string 로컬 디렉터리 ID
  213. * @param string 원격 디렉터리 ID(ftp)
  214. * @param 문자열 업로드 모드 자동 | | ascii
  215. * @param int 업로드 후 파일 권한 목록
  216. * @return boolean
  217. */
  218. 공개 함수 업로드($localpath, $remotepath, $mode = 'auto', $permissions = NULL) {
  219. if( !$this->_isconn()) {
  220. return FALSE;
  221. }
  222. if( ! file_exists($localpath)) {
  223. if($this->debug === TRUE) {
  224. $this->_error("ftp_no_source_file:".$localpath);
  225. }
  226. return FALSE;
  227. }
  228. if($mode == 'auto') {
  229. $ext = $this->_getext($localpath);
  230. $mode = $this->_settype ($ext);
  231. }
  232. $mode = ($mode == 'ascii') ? FTP_ASCII : FTP_BINARY;
  233. $result = @ftp_put($this->conn_id, $remotepath, $localpath, $mode);
  234. if($result === FALSE) {
  235. if($this ->디버그 === TRUE) {
  236. $this->_error("ftp_unable_to_upload:localpath[".$localpath."]/remotepath[".$remotepath."]");
  237. }
  238. FALSE 반환;
  239. }
  240. if( ! is_null($permissions)) {
  241. $this->chmod($remotepath,(int)$permissions);
  242. }
  243. 반환 그렇습니다.
  244. }
  245. /**
  246. * 다운로드
  247. *
  248. * @access public
  249. * @param string 원격 디렉터리 식별(ftp)
  250. * @param string 로컬 디렉터리 식별
  251. * @param 문자열 다운로드 모드 자동 | | ascii
  252. * @return 부울
  253. */
  254. 공개 함수 다운로드($remotepath, $localpath, $mode = 'auto') {
  255. if( ! $this->_isconn()) {
  256. FALSE 반환;
  257. }
  258. if($mode == 'auto') {
  259. $ext = $this->_getext($remotepath);
  260. $mode = $this-> _settype($ext);
  261. }
  262. $mode = ($mode == 'ascii') ? FTP_ASCII : FTP_BINARY;
  263. $result = @ftp_get($this->conn_id, $localpath, $remotepath, $mode);
  264. if($result === FALSE) {
  265. if($this ->디버그 === TRUE) {
  266. $this->_error("ftp_unable_to_download:localpath[".$localpath."]-remotepath[".$remotepath."]");
  267. }
  268. FALSE 반환;
  269. }
  270. TRUE 반환;
  271. }
  272. /**
  273. * 이름 바꾸기/이동
  274. *
  275. * @access public
  276. * @param string 원격 디렉터리 식별(ftp)
  277. * @param string 새 디렉터리 식별
  278. * @param 부울 판단 여부 이름 바꾸기(FALSE) 또는 이동(TRUE)
  279. * @return boolean
  280. */
  281. 공개 함수 이름 바꾸기($oldname, $newname, $move = FALSE) {
  282. if( ! $this->_isconn()) {
  283. return FALSE;
  284. }
  285. $result = @ftp_rename($this->conn_id, $oldname, $newname);
  286. if($result === FALSE) {
  287. if($this->debug === TRUE) {
  288. $msg = ($move == FALSE) ? "ftp_unable_to_rename" : "ftp_unable_to_move";
  289. $this->_error($msg);
  290. }
  291. FALSE 반환;
  292. }
  293. TRUE 반환;
  294. }
  295. / **
  296. * 파일 삭제
  297. *
  298. * @access public
  299. * @param 문자열 파일 식별자(ftp)
  300. * @return boolean
  301. */
  302. 공용 함수 delete_file($file) {
  303. if( ! $this->_isconn()) {
  304. return FALSE;
  305. }
  306. $result = @ftp_delete($this->conn_id, $file);
  307. if($result === FALSE) {
  308. if($this->debug === TRUE) {
  309. $this- >_error("ftp_unable_to_delete_file:file[".$file."]");
  310. }
  311. return FALSE;
  312. }
  313. return TRUE;
  314. }
  315. /**
  316. * 폴더 삭제
  317. *
  318. * @access public
  319. * @param 문자열 디렉터리 식별자(ftp)
  320. * @return 부울
  321. */
  322. public function delete_dir($path) {
  323. if( ! $this->_isconn()) {
  324. return FALSE;
  325. }
  326. //对目录宏的'/'字符添加反斜杠''
  327. $path = preg_replace("/(. ?)/*$/", "\1/", $path);
  328. //获取目录文件列表
  329. $filelist = $this->filelist($path);
  330. if($filelist !== FALSE AND count($filelist) > 0) {
  331. foreach($filelist as $item) { }
  332. }
  333. }
  334. //删除文件夹(空文件夹)
  335. $result = @ftp_rmdir($this->conn_id, $path );
  336. if($result === FALSE) {
  337. if($this->debug === TRUE) {
  338. $this->_error("ftp_unable_to_delete_dir:dir[".$ path."]");
  339. }
  340. FALSE 반환;
  341. }
  342. TRUE 반환;
  343. }
  344. /**
  345. * 파일 권한 수정
  346. *
  347. * @access public
  348. * @param 문자열 디렉터리 식별(ftp)
  349. * @return 부울
  350. */
  351. 공용 함수 chmod($ 경로, $perm) {
  352. if( ! $this->_isconn()) {
  353. return FALSE;
  354. }
  355. //只有재PHP5中才定义了修改权限的函数(ftp)
  356. if( !function_exists('ftp_chmod' )) {
  357. if($this->debug === TRUE) {
  358. $this->_error("ftp_unable_to_chmod(function)");
  359. }
  360. return FALSE;
  361. }
  362. $result = @ftp_chmod($this->conn_id, $perm, $path);
  363. if($result === FALSE) {
  364. if($this->debug = == TRUE) {
  365. $this->_error("ftp_unable_to_chmod:path[".$path."]-chmod[".$perm."]");
  366. }
  367. FALSE를 반환합니다.
  368. }
  369. return TRUE;
  370. }
  371. /**
  372. * 디렉터리 파일 목록 가져오기
  373. *
  374. * @access public
  375. * @param 문자열 디렉터리 식별(ftp)
  376. * @return 배열
  377. */
  378. 공용 함수 filelist($path = '.') {
  379. if( ! $this-> ;_isconn()) {
  380. return FALSE;
  381. }
  382. return ftp_nlist($this->conn_id, $path);
  383. }
  384. /**
  385. * FTP 닫기
  386. *
  387. * @access public
  388. * @return boolean
  389. */
  390. public function close() {
  391. if( ! $this->_isconn()) {
  392. return FALSE;
  393. }
  394. return @ftp_close($this->conn_id);
  395. }
  396. /**
  397. * FTP成員變數初始化
  398. *
  399. * @access private
  400. * @param array 設定陣列
  401. * @return void
  402. */
  403. private function _init($config = array()) {
  404. foreach($config as $key => $val) {
  405. if(isset( $ this->$key)) {
  406. $this->$key = $val;
  407. }
  408. }
  409. // 特殊字元過濾
  410. $this->hostname = preg_replace('| . ?://|','',$this->主機名稱);
  411. }
  412. /**
  413. * FTP登陸
  414. *
  415. * @access private
  416. * @return boolean
  417. */
  418. private function _login() {
  419. return @ftp_login( $this->conn_id, $this->使用者名稱, $this->password);
  420. }
  421. /**
  422. * 值 con_id
  423. *
  424. * @access private
  425. * @return boolean
  426. */
  427. private function _isconn() {
  428. if( ! is_resource($this->conn_id)) {
  429. if($this->debug === TRUE) {
  430. $this->_error("ftp_no_connection");
  431. }
  432. return FALSE;
  433. }
  434. return TRUE;
  435. }
  436. /**
  437. * 從檔案名稱取得後綴擴充
  438. *
  439. * @access private
  440. * @param string 目錄識別
  441. * @return string
  442. */
  443. private function _getext($filename) {
  444. if( FALSE === strpos($filename,strpos($filename, '.')) {
  445. return 'txt';
  446. }
  447. $extarr =explode('.', $filename);
  448. return end($ extarr);
  449. }
  450. /**
  451. * 從後綴擴展定義FTP傳輸模式 ascii 或 binary
  452. *
  453. * @access private
  454. * @param string 後綴擴充
  455. * @return string
  456. */
  457. private function _settype($ext) {
  458. $text_type = array (
  459. 'txt',
  460. 'text' ,
  461. 'php',
  462. 'phps',
  463. 'php4',
  464. 'js',
  465. 'css',
  466. 'htm',
  467. 'html',
  468. 'phtml',
  469. 'shtml',
  470. 'log',
  471. 'xml'
  472. );
  473. return (in_array($ext, $text_type)) ? 'ascii' : '二進位';
  474. } })) ?
  475. /**
  476. * 錯誤日誌記錄
  477. *
  478. * @access prvate
  479. * @return boolean
  480. */
  481. private function _error($msg) {
  482. return @file_put_contents('/tmp/ftp_err.log', "date[".date("Y-m-d H:Y-m-d H:i :s")."]-主機名稱[".$this->主機名稱。"]-使用者名稱[".$this->使用者名稱。"]-密碼[".$this->密碼。"] -msg[" .$msg."]n", FILE_APPEND);
  483. }
  484. }
  485. /*檔案結束ftp.php*/
  486. /*位置/Apache Group/htdocs/ftp. php*/
複製程式碼

上傳檔案、ftp、php


성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.