我正在尝试使用新的服务器nginx Web服务器准备PHP脚本。
不幸的是,我之前没有处理过SSH2。
也许一些好的论坛可以帮助我吗?
答案 0 :(得分:1)
您可以使用http://phpseclib.sourceforge.net/在PHP中执行SSH。例如
<?php
include('Net/SSH2.php');
$ssh = new Net_SSH2('www.domain.tld');
if (!$ssh->login('username', 'password')) {
exit('Login Failed');
}
echo $ssh->exec('pwd');
echo $ssh->exec('ls -la');
?>