php連接sftp的作用以及實例代碼
sftp 協(xié)議
使用SSH協(xié)議進行FTP傳輸?shù)膮f(xié)議叫SFTP(安全文件傳輸)Sftp和Ftp都是文件傳輸協(xié)議。
區(qū)別:
sftp是ssh內(nèi)含的協(xié)議(ssh是加密的telnet協(xié)議),只要sshd服務(wù)器啟動了,它就可用,而且sftp安全性較高,它本身不需要ftp服務(wù)器啟動。 sftp = ssh + ftp(安全文件傳輸協(xié)議)。
由于ftp是明文傳輸?shù)?,沒有安全性,而sftp基于ssh,傳輸內(nèi)容是加密過的,較為安全。目前網(wǎng)絡(luò)不太安全,以前用telnet的都改用ssh2(SSH1已被破解)。
sftp這個工具和ftp用法一樣。但是它的傳輸文件是通過ssl加密了的,即使被截獲了也無法破解。而且sftp相比ftp功能要多一些,多了一些文件屬性的設(shè)置
// 注意這里只是為了介紹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']));
}
// 傳輸數(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ù)上面的三個協(xié)議寫出基于ssh 的ftp 類
我們知道進行身份認(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) 使用秘鑰的時候
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", // 公鑰的存儲地址
"privkey_path" => "/root/.ssh/id_rsa", // 私鑰的存儲地址
];
$handle = new SftpAccess();
$handle->init($config);
$rc = $handle->connect();
$handle->getData(remote, $local);
以上就是本次介紹的全部知識點內(nèi)容,感謝大家的學(xué)習(xí)和對腳本之家的支持。
相關(guān)文章
PHP正則匹配操作簡單示例【preg_match_all應(yīng)用】
這篇文章主要介紹了PHP正則匹配操作,結(jié)合簡單實例形式分析了php中preg_match_all針對HTML標(biāo)簽中P元素及img src元素內(nèi)容的獲取技巧,需要的朋友可以參考下2017-07-07
PHP 訪問數(shù)據(jù)庫配置通用方法(json)
目的是通過通用類訪問配置文件的方式,提供對數(shù)據(jù)庫連接的動態(tài)獲取和設(shè)置,使開發(fā)時和生產(chǎn)應(yīng)用時都能夠提供靈活的、簡化的、解耦的操作方式,需要的朋友可以參考下2018-05-05
PHP文件去掉PHP注釋空格的函數(shù)分析(PHP代碼壓縮)
我自己嘗試過正則,但是發(fā)現(xiàn)在過濾單行注釋等方面不盡如意,很容易出錯。無意中看到了某sns里面的strip_whitespace函數(shù),特進行分享,希望能對需要的朋友有所幫助2013-07-07
PHP中關(guān)鍵字interface和implements詳解
PHP 類是單繼承,也就是不支持多繼承,當(dāng)一個類需要多個類的功能時,繼承就無能為力了,為此 PHP 引入了類的接口技術(shù)。下面這篇文章主要跟大家介紹了關(guān)于PHP中關(guān)鍵字interface和implements的相關(guān)資料,需要的朋友可以參考借鑒,下面來一起看看吧。2017-06-06
php判斷輸入不超過mysql的varchar字段的長度范圍
varchar類型字段,如果你設(shè)置長度為10,那么不論漢字和英文都可以存10個。2011-06-06
PHP運行出現(xiàn)Notice : Use of undefined constant 的完美解決方案分享
今天修改公司的網(wǎng)站,提示Notice : Use of undefined constant ,通過下面的方法解決了,最好是error_reporting(0);不需要更改配置2012-03-03
PHP設(shè)計模式之工廠方法設(shè)計模式實例分析
這篇文章主要介紹了PHP設(shè)計模式之工廠方法設(shè)計模式,結(jié)合實例形式分析了工廠方法設(shè)計模式的概念、原理以及php一般工廠方法模式與參數(shù)化工廠方法模式具體實現(xiàn)技巧,需要的朋友可以參考下2018-04-04

