本文操作环境:windows7系统、PHP7.1版,DELL G3电脑
怎么用php实现远程连接?
php实现远程操作
使用 php 进行远程操作的时候,需要安装SSH2模块。关于在SSH2模块中用到过的几个函数,做一个简单的记录。
常用方法
1、连接
ssh2_connect ($host, $port = null, $methods = nullarray , $callbacks = nullarray )
连接到一个 SSH 服务器
2、认证
ssh2_auth_password ($session, $username, $password)
在 SSH 上使用普通密码进行认证
或者
ssh2_auth_pubkey_file ($session, $username, $pubkeyfile, $privkeyfile, $passphrase = null)
通过公钥进行认证
3、文件传送
ssh2_scp_send ( resource $session , string $local_file , string $remote_file [, int $create_mode = 0644 ] )
通过 scp 协议发送文件
ssh2_scp_recv ( resource $session , string $remote_file , string $local_file )
通过 scp 协议获得文件
4、执行命令
ssh2_exec ($session, $command, $pty = null, $env = nullarray , $width = null, $height = null, $width_height_type = null)
在远程机器上执行命令
5、其他
ssh2_fetch_stream ($channel, $streamid) {}
获取拓展的数据流。常用的$streamid 定义有:
define ('SSH2_STREAM_STDIO', 0); define ('SSH2_STREAM_STDERR', 1); stream_set_blocking ( resource $stream , bool $mode )
设置流为 阻塞/非阻塞 状态。当 $mode 为 true 时为阻塞; $mode 为 false 时,则为非阻塞状态。
简单应用
//建立连接 $connection = ssh2_connect($host, (int)$port); if (!$connection) { ... ... } //进行认证 if (!ssh2_auth_password($connection, $user, $password)) { ... ... } //发送文件 if (!ssh2_scp_send($connection, $sourceFile, $targetFile, 0644)) { ... ... }else{ $stream = ssh2_exec($connection, "stat /tmp/targetFile 2>&1"); $errorStream = ssh2_fetch_stream($stream, SSH2_STREAM_STDERR); // Enable blocking for both streams stream_set_blocking($errorStream, true); stream_set_blocking($stream, true); echo stream_get_contents($stream); // Close the streams fclose($errorStream); fclose($stream); }
推荐学习:《PHP视频教程》
以上就是怎么用php实现远程连接的详细内容,更多请关注亿码酷站其它相关文章!
怎么用php实现远程连接
—–文章转载自PHP中文网如有侵权请联系ymkuzhan@126.com删除
转载请注明来源:怎么用php实现远程连接
本文永久链接地址:https://www.ymkuzhan.com/34694.html
本文永久链接地址:https://www.ymkuzhan.com/34694.html
下载声明:
本站资源如无特殊说明默认解压密码为www.ymkuzhan.com建议使用WinRAR解压; 本站资源来源于用户分享、互换、购买以及网络收集等渠道,本站不提供任何技术服务及有偿服务,资源仅提供给大家学习研究请勿作它用。 赞助本站仅为维持服务器日常运行并非购买程序及源码费用因此不提供任何技术支持,如果你喜欢该程序,请购买正版! 版权声明:
下载本站资源学习研究的默认同意本站【版权声明】若本站提供的资源侵犯到你的权益,请提交版权证明文件至邮箱ymkuzhan#126.com(将#替换为@)站长将会在三个工作日内为您删除。 免责声明:
您好,本站所有资源(包括但不限于:源码、素材、工具、字体、图像、模板等)均为用户分享、互换、购买以及网络收集而来,并未取得原始权利人授权,因此禁止一切商用行为,仅可用于个人研究学习使用。请务必于下载后24小时内彻底删除,一切因下载人使用所引起的法律相关责任,包括但不限于:侵权,索赔,法律责任,刑事责任等相关责任,全部由下载人/使用人,全部承担。以上说明,一经发布视为您已全部阅读,理解、同意以上内容,如对以上内容持有异议,请勿下载,谢谢配合!支持正版,人人有责,如不慎对您的合法权益构成侵犯,请联系我们对相应内容进行删除,谢谢!