php連接sftp有什麼用

(*-*)浩
發布: 2023-02-24 16:46:01
原創
2280 人瀏覽過

sftp 協定 

使用SSH協定進行FTP傳輸的協定稱為SFTP(安全檔案傳輸)Sftp和Ftp都是檔案傳輸協定。

php連接sftp有什麼用

差異:

sftp是ssh內含的協定(ssh是加密的telnet協定),只要sshd伺服器啟動了,它就可用,而且sftp安全性較高,它本身不需要ftp伺服器啟動。 sftp = ssh ftp(安全文件傳輸協定)。 (推薦學習:PHP程式設計從入門到精通

由於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);
登入後複製

以上是php連接sftp有什麼用的詳細內容。更多資訊請關注PHP中文網其他相關文章!

相關標籤:
php
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板