主頁 > 知識(shí)庫 > php連接sftp的作用以及實(shí)例代碼

php連接sftp的作用以及實(shí)例代碼

熱門標(biāo)簽:銅川電話機(jī)器人價(jià)格 AI電話機(jī)器人OEM貼牌 智能電話機(jī)器人好公司門薩維 德陽中江如何申請(qǐng)400開頭電話 沛縣400電話辦理 江蘇電商外呼系統(tǒng)運(yùn)營商 辦理重慶400電話 聊城電話外呼系統(tǒng)公司 青白江地圖標(biāo)注

sftp 協(xié)議

使用SSH協(xié)議進(jìn)行FTP傳輸?shù)膮f(xié)議叫SFTP(安全文件傳輸)Sftp和Ftp都是文件傳輸協(xié)議。

區(qū)別:

sftp是ssh內(nèi)含的協(xié)議(ssh是加密的telnet協(xié)議),只要sshd服務(wù)器啟動(dòng)了,它就可用,而且sftp安全性較高,它本身不需要ftp服務(wù)器啟動(dòng)。 sftp = ssh + ftp(安全文件傳輸協(xié)議)。

由于ftp是明文傳輸?shù)?,沒有安全性,而sftp基于ssh,傳輸內(nèi)容是加密過的,較為安全。目前網(wǎng)絡(luò)不太安全,以前用telnet的都改用ssh2(SSH1已被破解)。

sftp這個(gè)工具和ftp用法一樣。但是它的傳輸文件是通過ssl加密了的,即使被截獲了也無法破解。而且sftp相比ftp功能要多一些,多了一些文件屬性的設(shè)置

// 注意這里只是為了介紹ftp ,并沒有做驗(yàn)證 ;   

class ftp{

   

  // 初始配置為NULL

  private $config =NULL ;

  // 連接為NULL 

  private $conn = NULL;

   

  public function init($config){

   $this->config = $config;  

  }

   

  // ftp 連接 

  public function connect(){

    return $this->conn = ftp_connect($this->config['host'],$this->config['port'])); 

  }

   

   

  // 傳輸數(shù)據(jù) 傳輸層協(xié)議,獲得數(shù)據(jù) true or false 

 public function download($remote, $local,$mode = 'auto'){

   return $result = @ftp_get($this->conn, $localpath, $remotepath, $mode);

 }

  

 // 傳輸數(shù)據(jù) 傳輸層協(xié)議,上傳數(shù)據(jù) true or false 

 public function upload($remote, $local,$mode = 'auto'){

   return $result = @ftp_put($this->conn, $localpath, $remotepath, $mode);

 }

  

  

   // 刪除文件 

  public function remove($remote){

   return $result = @ftp_delete($this->conn_id, $file);

  }

  

   

}    

 

 

 

// 使用 

$config = array(

      'hostname' => 'localhost',

   'username' => 'root',

   'password' => 'root',

   'port' => 21

 

) ;

  

$ftp = new Ftp();

$ftp->connect($config);

$ftp->upload('ftp_err.log','ftp_upload.log');

$ftp->download('ftp_upload.log','ftp_download.log');

 

 

 

/*根據(jù)上面的三個(gè)協(xié)議寫出基于ssh 的ftp 類

我們知道進(jìn)行身份認(rèn)證的方式有兩種:公鑰;密碼 ;

(1) 使用密碼登陸

(2) 免密碼登陸也就是使用公鑰登陸 

 

*/

 

class sftp{

   

   

  // 初始配置為NULL

  private $config =NULL ;

  // 連接為NULL 

  private $conn = NULL;

 

   

  // 是否使用秘鑰登陸 

   private $use_pubkey_file= false;

   

  // 初始化

  public function init($config){

    $this->config = $config ; 

  }

   

   

  // 連接ssh ,連接有兩種方式(1) 使用密碼

  // (2) 使用秘鑰 

  public function connect(){

     

    $methods['hostkey'] = $use_pubkey_file ? 'ssh-rsa' : [] ; 

    $con = ssh2_connect($this->config['host'], $this->config['port'], $methods);

    //(1) 使用秘鑰的時(shí)候 

    if($use_pubkey_file){

    // 用戶認(rèn)證協(xié)議

       $rc = ssh2_auth_pubkey_file(

        $conn,

        $this->config['user'],

        $this->config['pubkey_file'],

        $this->config['privkey_file'],

        $this->config['passphrase']) 

      );

    //(2) 使用登陸用戶名字和登陸密碼

    }else{

      $rc = ssh2_auth_password( $conn, $this->conf_['user'],$this->conf_['passwd']);

    

    }

     

    return $rc ; 

  }

   

   

  // 傳輸數(shù)據(jù) 傳輸層協(xié)議,獲得數(shù)據(jù)

   public function download($remote, $local){

      

     return ssh2_scp_recv($this->conn_, $remote, $local);

   }

    

   //傳輸數(shù)據(jù) 傳輸層協(xié)議,寫入ftp服務(wù)器數(shù)據(jù)

   public function upload($remote, $local,$file_mode=0664){

     return ssh2_scp_send($this->conn_, $local, $remote, $file_mode);

      

   }

    

   // 刪除文件 

   public function remove($remote){

      $sftp = ssh2_sftp($this->conn_);

      $rc = false;

 

  if (is_dir("ssh2.sftp://{$sftp}/{$remote}")) {

      $rc = false ;

       

      // ssh 刪除文件夾

   $rc = ssh2_sftp_rmdir($sftp, $remote);

      } else {

     // 刪除文件

        $rc = ssh2_sftp_unlink($sftp, $remote);

      }

      return $rc;

       

    }

      

  

  

   

}

 

 

$config = [

 "host"   => "192.168.1.1 ",  // ftp地址

 "user"   => "***", 

 "port"   => "22",

 "pubkey_path" => "/root/.ssh/id_rsa.pub", // 公鑰的存儲(chǔ)地址

 "privkey_path" => "/root/.ssh/id_rsa",   // 私鑰的存儲(chǔ)地址

];

 

$handle = new SftpAccess();

$handle->init($config);

$rc = $handle->connect();

$handle->getData(remote, $local);

以上就是本次介紹的全部知識(shí)點(diǎn)內(nèi)容,感謝大家的學(xué)習(xí)和對(duì)腳本之家的支持。

您可能感興趣的文章:
  • java使用apache commons連接ftp修改ftp文件名失敗原因
  • PHP連接sftp并下載文件的方法教程
  • Java FTPClient連接池的實(shí)現(xiàn)
  • Java語言實(shí)現(xiàn)簡單FTP軟件 FTP連接管理模塊實(shí)現(xiàn)(8)
  • Java連接ftp服務(wù)器實(shí)例代碼
  • python查看FTP是否能連接成功的方法
  • serv_u要關(guān)閉被動(dòng)模式(PASV),使用PORT模式才能連接FTP的解決辦法
  • 如何基于FTP4J實(shí)現(xiàn)FTPS連接過程解析

標(biāo)簽:濟(jì)寧 南寧 三亞 赤峰 山南 烏魯木齊 鷹潭 迪慶

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《php連接sftp的作用以及實(shí)例代碼》,本文關(guān)鍵詞  php,連接,sftp,的,作用,以及,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《php連接sftp的作用以及實(shí)例代碼》相關(guān)的同類信息!
  • 本頁收集關(guān)于php連接sftp的作用以及實(shí)例代碼的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章