> 백엔드 개발 > PHP 문제 > SFTP에 연결하는 PHP의 용도는 무엇입니까?

SFTP에 연결하는 PHP의 용도는 무엇입니까?

(*-*)浩
풀어 주다: 2023-02-24 16:46:01
원래의
2349명이 탐색했습니다.

sftp 프로토콜

FTP 전송에 SSH 프로토콜을 사용하는 프로토콜을 SFTP(Secure File Transfer)라고 합니다. Sftp와 Ftp는 모두 파일 전송 프로토콜입니다.

SFTP에 연결하는 PHP의 용도는 무엇입니까?

차이:

sftp는 ssh에 포함된 프로토콜입니다(ssh는 암호화된 텔넷 프로토콜입니다). 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);
로그인 후 복사

위 내용은 SFTP에 연결하는 PHP의 용도는 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

관련 라벨:
php
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿