如何通过 PHP 执行 SSH 命令
我希望通过 PHP 进行 SSH 输出.解决此问题的最佳/最安全方法是什么?我知道我可以做到:
I am looking to SSH out via PHP. What is the best/most secure way to go about this? I know I can do:
shell_exec("SSH user@host.com mkdir /testing");
还有更好的吗?那种感觉太调皮"了:)
Anything better? That feels so 'naughty' :).
推荐答案
我会使用 phpseclib,一个纯 PHP SSH 实现.一个例子:
I would use phpseclib, a pure PHP SSH implementation. An example:
<?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');
?>
相关文章