PHP的FTP操作類( 拷貝、移動、刪除檔案 建立目錄 )

來源:互聯網
上載者:User
FTP操作類( 拷貝、移動、刪除檔案 建立目錄 ) class class_ftp{ public $off; 返回操作狀態(成功 失敗) public $conn
  1. /**
  2. * 作用:FTP操作類( 拷貝、移動、刪除檔案/建立目錄 )
  3. * QQ交流群:136112330
  4. */
  5. class class_ftp
  6. {
  7. public $off; // 返回操作狀態(成功/失敗)
  8. public $conn_id; // FTP串連
  9. /**
  10. * 方法:FTP串連
  11. * @FTP_HOST -- FTP主機
  12. * @FTP_PORT -- 連接埠
  13. * @FTP_USER -- 使用者名稱
  14. * @FTP_PASS -- 密碼
  15. */
  16. function __construct($FTP_HOST,$FTP_PORT,$FTP_USER,$FTP_PASS)
  17. {
  18. $this->conn_id = @ftp_connect($FTP_HOST,$FTP_PORT) or die("FTP伺服器串連失敗");
  19. @ftp_login($this->conn_id,$FTP_USER,$FTP_PASS) or die("FTP伺服器登陸失敗");
  20. @ftp_pasv($this->conn_id,1); // 開啟被動類比
  21. }
  22. /**
  23. * 方法:上傳檔案
  24. * @path -- 本地路徑
  25. * @newpath -- 上傳路徑
  26. * @type -- 若目標目錄不存在則建立
  27. */
  28. function up_file($path,$newpath,$type=true)
  29. {
  30. if($type) $this->dir_mkdirs($newpath);
  31. $this->off = @ftp_put($this->conn_id,$newpath,$path,FTP_BINARY);
  32. if(!$this->off) echo "檔案上傳失敗,請檢查許可權及路徑是否正確!";
  33. }
  34. /**
  35. * 方法:移動檔案
  36. * @path -- 原路徑
  37. * @newpath -- 新路徑
  38. * @type -- 若目標目錄不存在則建立
  39. */
  40. function move_file($path,$newpath,$type=true)
  41. {
  42. if($type) $this->dir_mkdirs($newpath);
  43. $this->off = @ftp_rename($this->conn_id,$path,$newpath);
  44. if(!$this->off) echo "檔案移動失敗,請檢查許可權及原路徑是否正確!";
  45. }
  46. /**
  47. * 方法:複製檔案
  48. * 說明:由於FTP無複製命令,本方法變通操作為:下載後再上傳到新的路徑
  49. * @path -- 原路徑
  50. * @newpath -- 新路徑
  51. * @type -- 若目標目錄不存在則建立
  52. */
  53. function copy_file($path,$newpath,$type=true)
  54. {
  55. $downpath = "c:/tmp.dat";
  56. $this->off = @ftp_get($this->conn_id,$downpath,$path,FTP_BINARY);// 下載
  57. if(!$this->off) echo "檔案複製失敗,請檢查許可權及原路徑是否正確!";
  58. $this->up_file($downpath,$newpath,$type);
  59. }
  60. /**
  61. * 方法:刪除檔案
  62. * @path -- 路徑
  63. */
  64. function del_file($path)
  65. {
  66. $this->off = @ftp_delete($this->conn_id,$path);
  67. if(!$this->off) echo "檔案刪除失敗,請檢查許可權及路徑是否正確!";
  68. }
  69. /**
  70. * 方法:組建目錄
  71. * @path -- 路徑
  72. */
  73. function dir_mkdirs($path)
  74. {
  75. $path_arr = explode('/',$path); // 取目錄數組
  76. $file_name = array_pop($path_arr); // 彈出檔案名稱
  77. $path_div = count($path_arr); // 取層數
  78. foreach($path_arr as $val) // 建立目錄
  79. {
  80. if(@ftp_chdir($this->conn_id,$val) == FALSE)
  81. {
  82. $tmp = @ftp_mkdir($this->conn_id,$val);
  83. if($tmp == FALSE)
  84. {
  85. echo "目錄建立失敗,請檢查許可權及路徑是否正確!";
  86. exit;
  87. }
  88. @ftp_chdir($this->conn_id,$val);
  89. }
  90. }
  91. for($i=1;$i=$path_div;$i++) // 回退到根
  92. {
  93. @ftp_cdup($this->conn_id);
  94. }
  95. }
  96. /**
  97. * 方法:關閉FTP串連
  98. */
  99. function close()
  100. {
  101. @ftp_close($this->conn_id);
  102. }
  103. }// class class_ftp end
  104. /************************************** 測試 ***********************************
  105. $ftp = new class_ftp('192.168.100.143',21,'user','pwd'); // 開啟FTP串連
  106. //$ftp->up_file('aa.txt','a/b/c/cc.txt'); // 上傳檔案
  107. //$ftp->move_file('a/b/c/cc.txt','a/cc.txt'); // 移動檔案
  108. //$ftp->copy_file('a/cc.txt','a/b/dd.txt'); // 複製檔案
  109. //$ftp->del_file('a/b/dd.txt'); // 刪除檔案
  110. $ftp->close(); // 關閉FTP串連
  111. ******************************************************************************/
  112. ?>
複製代碼

CURL詳解
curl_close — 關閉一個curl會話
curl_copy_handle — 拷貝一個curl串連資源的所有內容和參數
curl_errno — 返回一個包含當前會話錯誤資訊的數字編號
curl_error — 返回一個包含當前會話錯誤資訊的字串
curl_exec — 執行一個curl會話
curl_getinfo — 擷取一個curl串連資源控制代碼的資訊
curl_init — 初始化一個curl會話

curl_multi_add_handle — 向curl批處理會話中添加單獨的curl控制代碼資源
curl_multi_close — 關閉一個批處理控制代碼資源
curl_multi_exec — 解析一個curl批處理控制代碼
curl_multi_getcontent — 返回擷取的輸出的文字資料流
curl_multi_info_read — 擷取當前解析的curl的相關傳輸資訊
curl_multi_init — 初始化一個curl批處理控制代碼資源
curl_multi_remove_handle — 移除curl批處理控制代碼資源中的某個控制代碼資源
curl_multi_select — Get all the sockets associated with the cURL extension, which can then be "selected"
curl_setopt_array — 以數組的形式為一個curl設定會話參數
curl_setopt — 為一個curl設定會話參數
curl_version — 擷取curl相關的版本資訊
curl_init()函數的作用初始化一個curl會話,curl_init()函數唯一的一個參數是可選的,表示一個url地址。
curl_exec()函數的作用是執行一個curl會話,唯一的參數是curl_init()函數返回的控制代碼。
curl_close()函數的作用是關閉一個curl會話,唯一的參數是curl_init()函數返回的控制代碼。

  1. $url = 'http://www.@@@@@@.com/';
  2. //初始化curl
  3. $curl = curl_init($url);
  4. //curl逾時 30s
  5. curl_setopt($curl, CURLOPT_TIMEOUT, '30');
  6. //user-agent頭
  7. curl_setopt($curl, CURLOPT_USERAGENT, "Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:14.0) Gecko/20120722 Firefox/14.0.1");
  8. //返迴文件流
  9. curl_setopt($curl, CURLOPT_RETURNTRANSFER, TRUE);
  10. //開啟標頭檔資料流輸出
  11. curl_setopt($curl, CURLOPT_HEADER, 1);
  12. $string = curl_exec($curl);
  13. var_dump($string);
  14. preg_match_all('/Set-Cookie:\stest=(.*)/i', $string, $results);
  15. var_dump($results);
  16. ?>
複製代碼
PHP, FTP
  • 相關文章

    聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.