FTP操作類( 拷貝、移動、刪除檔案 建立目錄 ) class class_ftp{ public $off; 返回操作狀態(成功 失敗) public $conn
- /**
- * 作用:FTP操作類( 拷貝、移動、刪除檔案/建立目錄 )
- * QQ交流群:136112330
- */
- class class_ftp
- {
- public $off; // 返回操作狀態(成功/失敗)
- public $conn_id; // FTP串連
- /**
- * 方法:FTP串連
- * @FTP_HOST -- FTP主機
- * @FTP_PORT -- 連接埠
- * @FTP_USER -- 使用者名稱
- * @FTP_PASS -- 密碼
- */
- function __construct($FTP_HOST,$FTP_PORT,$FTP_USER,$FTP_PASS)
- {
- $this->conn_id = @ftp_connect($FTP_HOST,$FTP_PORT) or die("FTP伺服器串連失敗");
- @ftp_login($this->conn_id,$FTP_USER,$FTP_PASS) or die("FTP伺服器登陸失敗");
- @ftp_pasv($this->conn_id,1); // 開啟被動類比
- }
- /**
- * 方法:上傳檔案
- * @path -- 本地路徑
- * @newpath -- 上傳路徑
- * @type -- 若目標目錄不存在則建立
- */
- function up_file($path,$newpath,$type=true)
- {
- if($type) $this->dir_mkdirs($newpath);
- $this->off = @ftp_put($this->conn_id,$newpath,$path,FTP_BINARY);
- if(!$this->off) echo "檔案上傳失敗,請檢查許可權及路徑是否正確!";
- }
- /**
- * 方法:移動檔案
- * @path -- 原路徑
- * @newpath -- 新路徑
- * @type -- 若目標目錄不存在則建立
- */
- function move_file($path,$newpath,$type=true)
- {
- if($type) $this->dir_mkdirs($newpath);
- $this->off = @ftp_rename($this->conn_id,$path,$newpath);
- if(!$this->off) echo "檔案移動失敗,請檢查許可權及原路徑是否正確!";
- }
- /**
- * 方法:複製檔案
- * 說明:由於FTP無複製命令,本方法變通操作為:下載後再上傳到新的路徑
- * @path -- 原路徑
- * @newpath -- 新路徑
- * @type -- 若目標目錄不存在則建立
- */
- function copy_file($path,$newpath,$type=true)
- {
- $downpath = "c:/tmp.dat";
- $this->off = @ftp_get($this->conn_id,$downpath,$path,FTP_BINARY);// 下載
- if(!$this->off) echo "檔案複製失敗,請檢查許可權及原路徑是否正確!";
- $this->up_file($downpath,$newpath,$type);
- }
- /**
- * 方法:刪除檔案
- * @path -- 路徑
- */
- function del_file($path)
- {
- $this->off = @ftp_delete($this->conn_id,$path);
- if(!$this->off) echo "檔案刪除失敗,請檢查許可權及路徑是否正確!";
- }
- /**
- * 方法:組建目錄
- * @path -- 路徑
- */
- function dir_mkdirs($path)
- {
- $path_arr = explode('/',$path); // 取目錄數組
- $file_name = array_pop($path_arr); // 彈出檔案名稱
- $path_div = count($path_arr); // 取層數
- foreach($path_arr as $val) // 建立目錄
- {
- if(@ftp_chdir($this->conn_id,$val) == FALSE)
- {
- $tmp = @ftp_mkdir($this->conn_id,$val);
- if($tmp == FALSE)
- {
- echo "目錄建立失敗,請檢查許可權及路徑是否正確!";
- exit;
- }
- @ftp_chdir($this->conn_id,$val);
- }
- }
- for($i=1;$i=$path_div;$i++) // 回退到根
- {
- @ftp_cdup($this->conn_id);
- }
- }
- /**
- * 方法:關閉FTP串連
- */
- function close()
- {
- @ftp_close($this->conn_id);
- }
- }// class class_ftp end
- /************************************** 測試 ***********************************
- $ftp = new class_ftp('192.168.100.143',21,'user','pwd'); // 開啟FTP串連
- //$ftp->up_file('aa.txt','a/b/c/cc.txt'); // 上傳檔案
- //$ftp->move_file('a/b/c/cc.txt','a/cc.txt'); // 移動檔案
- //$ftp->copy_file('a/cc.txt','a/b/dd.txt'); // 複製檔案
- //$ftp->del_file('a/b/dd.txt'); // 刪除檔案
- $ftp->close(); // 關閉FTP串連
- ******************************************************************************/
- ?>
複製代碼 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()函數返回的控制代碼。
- $url = 'http://www.@@@@@@.com/';
- //初始化curl
- $curl = curl_init($url);
- //curl逾時 30s
- curl_setopt($curl, CURLOPT_TIMEOUT, '30');
- //user-agent頭
- curl_setopt($curl, CURLOPT_USERAGENT, "Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:14.0) Gecko/20120722 Firefox/14.0.1");
- //返迴文件流
- curl_setopt($curl, CURLOPT_RETURNTRANSFER, TRUE);
- //開啟標頭檔資料流輸出
- curl_setopt($curl, CURLOPT_HEADER, 1);
- $string = curl_exec($curl);
- var_dump($string);
- preg_match_all('/Set-Cookie:\stest=(.*)/i', $string, $results);
- var_dump($results);
- ?>
複製代碼
|