php連接sftp的作用以及實例代碼

在本篇文章裏小編給各位整理的是關於php連接sftp的作用以及實例代碼,有需要的朋友們可以參考學習下。

sftp 協議

使用SSH協議進行FTP傳輸的協議叫SFTP(安全文件傳輸)Sftp和Ftp都是文件傳輸協議。

區別:

sftp是ssh內含的協議(ssh是加密的telnet協議),只要sshd服務器啓動了,它就可用,而且sftp安全性較高,它本身不需要ftp服務器啓動。 sftp = ssh + ftp(安全文件傳輸協議)。

由於ftp是明文傳輸的,沒有安全性,而sftp基於ssh,傳輸內容是加密過的,較爲安全。目前網絡不太安全,以前用telnet的都改用ssh2(SSH1已被破解)。

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

// 注意這裏只是爲了介紹ftp ,並沒有做驗證 ;   

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'])); 

  }

   

   

  // 傳輸數據 傳輸層協議,獲得數據 true or false 

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

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

 }

  

 // 傳輸數據 傳輸層協議,上傳數據 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');

 

 

 

/*根據上面的三個協議寫出基於ssh 的ftp 類

我們知道進行身份認證的方式有兩種:公鑰;密碼 ;

(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) 使用祕鑰的時候 

    if($use_pubkey_file){

    // 用戶認證協議

       $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 ; 

  }

   

   

  // 傳輸數據 傳輸層協議,獲得數據

   public function download($remote, $local){

      

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

   }

    

   //傳輸數據 傳輸層協議,寫入ftp服務器數據

   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", // 公鑰的存儲地址

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

];

 

$handle = new SftpAccess();

$handle->init($config);

$rc = $handle->connect();

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

以上就是本次介紹的全部知識點內容,感謝大家的學習和對神馬文庫的支持。

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章