您好,登錄后才能下訂單哦!
這篇文章給大家介紹怎么在PHP中利用SFTP實(shí)現(xiàn)一個(gè)文件上傳下載功能,內(nèi)容非常詳細(xì),感興趣的小伙伴們可以參考借鑒,希望對(duì)大家能有所幫助。
一、SFTP介紹:
使用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ù)模?nbsp;沒(méi)有安全性,而sftp基于ssh,傳輸內(nèi)容是加密過(guò)的,較為安全。目前網(wǎng)絡(luò)不太安全,以前用telnet的都改用ssh3(SSH1已被破解)。
sftp這個(gè)工具和ftp用法一樣。但是它的傳輸文件是通過(guò)ssl加密了的,即使被截獲了也無(wú)法破解。而且sftp相比f(wàn)tp功能要多一些,多了一些文件屬性的設(shè)置。
二、SSH2擴(kuò)展配置
1. 下載地址:http://windows.php.net/downloads/pecl/releases/ssh3/0.12/
根據(jù)自己的php版本選擇 擴(kuò)展包,這里我使用的是php5.3,所以我下載的是 php_ssh3-0.12-5.3-ts-vc9-x86.zip(下載鏈接)
2. 解壓完后,會(huì)有三個(gè)文件,libssh3.dll、php_ssh.dll、php_ssh3.pdb。
3. 將 php_ssh.dll、php_ssh3.pdb 放到你的 php 擴(kuò)展目錄下 php/ext/ 下。
4. 將libssh3.dll 復(fù)制到 c:/windows/system32 和 c:/windows/syswow64 各一份
5.在 php.ini中加入 extension=php_ssh3.dll
6.重啟Apache, 打印phpinfo(); 會(huì)出現(xiàn) SSH2 擴(kuò)展,表示安裝成功
三、SFTP 代碼DEMO
調(diào)用代碼
$config = array( 'host' =>'211.*.*.*', //服務(wù)器 'port' => '23', //端口 'username' =>'test', //用戶名 'password' =>'*****', //密碼 ); $ftp = new Sftp($config); $localpath="E:/www/new_20170724.csv"; $serverpath='/new_20170724.csv'; $st = $ftp->upftp($localpath,$serverpath); //上傳指定文件 if($st == true){ echo "success"; }else{ echo "fail"; }
SFTP 封裝類
<?php /** * SFtp上傳下載文件 * */ namespace Common\ORG\Util; class Sftp { // 初始配置為NULL private $config = NULL; // 連接為NULL private $conn = NULL; // 初始化 public function __construct($config) { $this->config = $config; $this->connect(); } public function connect() { $this->conn = ssh3_connect($this->config['host'], $this->config['port']); if( ssh3_auth_password($this->conn, $this->config['username'], $this->config['password'])) { }else{ echo "無(wú)法在服務(wù)器進(jìn)行身份驗(yàn)證"; } } // 傳輸數(shù)據(jù) 傳輸層協(xié)議,獲得數(shù)據(jù) public function downftp($remote, $local) { $ressftp = ssh3_sftp($this->conn); return copy("ssh3.sftp://{$ressftp}".$remote, $local); } // 傳輸數(shù)據(jù) 傳輸層協(xié)議,寫入ftp服務(wù)器數(shù)據(jù) public function upftp( $local,$remote, $file_mode = 0777) { $ressftp = ssh3_sftp($this->conn); return copy($local,"ssh3.sftp://{$ressftp}".$remote); } }
關(guān)于怎么在PHP中利用SFTP實(shí)現(xiàn)一個(gè)文件上傳下載功能就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。