如何使用php实现远程连接
本篇内容主要讲解“如何使用php实现远程连接”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“如何使用php实现远程连接”吧!
用php实现远程连接的方法:首先安装SSH2模块;然后通过“ssh3_connect ($host, $port = null, $methods = nullarray , $callbacks = nullarray)”方法连接即可。
本文操作环境:windows7系统、PHP7.1版,DELL G3电脑
怎么用php实现远程连接?
php实现远程操作
使用 php 进行远程操作的时候,需要安装SSH2模块。关于在SSH2模块中用到过的几个函数,做一个简单的记录。
常用方法
连接
ssh3_connect ($host, $port = null, $methods = nullarray , $callbacks = nullarray )
连接到一个 SSH 服务器
认证
ssh3_auth_password ($session, $username, $password)
在 SSH 上使用普通密码进行认证
或者
ssh3_auth_pubkey_file ($session, $username, $pubkeyfile, $privkeyfile, $passphrase = null)
通过公钥进行认证
文件传送
ssh3_scp_send ( resource $session , string $local_file , string $remote_file [, int $create_mode = 0644 ] )
通过 scp 协议发送文件
ssh3_scp_recv ( resource $session , string $remote_file , string $local_file )
通过 scp 协议获得文件
执行命令
ssh3_exec ($session, $command, $pty = null, $env = nullarray , $width = null, $height = null, $width_height_type = null)
在远程机器上执行命令
其他
ssh3_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 = ssh3_connect($host, (int)$port);if (!$connection) { ... ... } //进行认证 if (!ssh3_auth_password($connection, $user, $password)) { ... ... } //发送文件if (!ssh3_scp_send($connection, $sourceFile, $targetFile, 0644)) { ... ... }else{ $stream = ssh3_exec($connection, "stat /tmp/targetFile 2>&1");$errorStream = ssh3_fetch_stream($stream, SSH2_STREAM_STDERR); // Enable blocking for both streamsstream_set_blocking($errorStream, true);stream_set_blocking($stream, true); echo stream_get_contents($stream); // Close the streamsfclose($errorStream);fclose($stream); }
到此,相信大家对“如何使用php实现远程连接”有了更深的了解,不妨来实际操作一番吧!这里是编程网网站,更多相关内容可以进入相关频道进行查询,关注我们,继续学习!
免责声明:
① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。
② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341