博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
php 实现SFTP上传文件
阅读量:5014 次
发布时间:2019-06-12

本文共 2277 字,大约阅读时间需要 7 分钟。

php 实现sftp文件上传完全可以用php.net 官网中的方式,代码如下:

 

1 class SFTPConnection 2 { 3     private $connection; 4     private $sftp; 5  6     public function __construct($host, $port=22) 7     { 8         $this->connection = @ssh2_connect($host, $port); 9         if (! $this->connection)10             throw new Exception("Could not connect to $host on port $port.");11     }12 13     public function login($username, $password)14     {15         if (! @ssh2_auth_password($this->connection, $username, $password))16             throw new Exception("Could not authenticate with username $username " .17                                 "and password $password.");18 19         $this->sftp = @ssh2_sftp($this->connection);20         if (! $this->sftp)21             throw new Exception("Could not initialize SFTP subsystem.");22     }23 24     public function uploadFile($local_file, $remote_file)25     {26         $sftp = $this->sftp;27         $stream = @fopen("ssh2.sftp://$sftp$remote_file", 'w');28 29         if (! $stream)30             throw new Exception("Could not open file: $remote_file");31 32         $data_to_send = @file_get_contents($local_file);33         if ($data_to_send === false)34             throw new Exception("Could not open local file: $local_file.");35 36         if (@fwrite($stream, $data_to_send) === false)37             throw new Exception("Could not send data from file: $local_file.");38 39         @fclose($stream);40     }41 }42 43 try44 {45     $sftp = new SFTPConnection("localhost", 22);46     $sftp->login("username", "password");47     $sftp->uploadFile("/tmp/to_be_sent", "/tmp/to_be_received");48 }49 catch (Exception $e)50 {51     echo $e->getMessage() . "\n";52 }

但是在进行中遇到了一个问题, 我的php版本是 PHP 5.6.31 (cli) (built: Aug  2 2017 15:05:23)  , 在执行

$stream = @fopen("ssh2.sftp://$sftp$remote_file", 'w');

fopen的时候 执行文件 会报 "Segmentation fault" 的错误, 然后变成以下方式便可以解决

$stream = @fopen("ssh2.sftp://" . intval($sftp) . $remote_file, 'w');

其中,在实现sftp上传的时候,没有在意上传文件和上传目录的区别(例如: /upload 和 /upload/test.txt 的问题), 导致每次执行php 都会报 fopen(): Unable to open ssh2.sftp://5/upload on remote host. 问题解决方法就是 认真, 大写的认真

以上就是php做的, 只要登录sftp服务器 进行查看便知道结果.

sftp 命令登录方式:

sftp -oPort=port  user@server 然后输入密码, 进去之后可以到相对的目录查看文件是否存在.

 

转载于:https://www.cnblogs.com/arnoldlivip/p/8618722.html

你可能感兴趣的文章
Maven入门笔记
查看>>
iOS webView的常见属性和方法
查看>>
理解position:relative
查看>>
Codeforces Round #344 (Div. 2) Messager KMP的应用
查看>>
20145308刘昊阳 《Java程序设计》第4周学习总结
查看>>
js倒计时
查看>>
EasyUI datagrid 格式 二
查看>>
Android虹软人脸识别sdk使用工具类
查看>>
UI:基础
查看>>
浅谈 @RequestParam 和@PathVariable
查看>>
设计模式之---装饰器设计模式
查看>>
基于WordNet的英文同义词、近义词相似度评估及代码实现
查看>>
Equation漏洞混淆利用分析总结(上)
查看>>
shell学习1shell简介
查看>>
Qt 【无法打开 xxxx头文件】
查看>>
JAVA项目将 Oracle 转 MySQL 数据库转换(Hibernate 持久层)
查看>>
三层架构(我的理解及详细分析)
查看>>
Django模板语言相关内容
查看>>
前端开发工程师如何在2013年里提升自己【转】--2016已更新升级很多何去何从?...
查看>>
markdown语法测试集合
查看>>