通过 php 使用 ssh 后我应该断开连接吗?
Should i disconnect after using a ssh through php?
如果我像这样对 sftp 服务器内的文件夹使用 chmod:
public function connection()
{
//connection
$ssh = new SSH2('10.10.10.10');
if (!$ssh->login('login', 'passwrd'))
{
exit('Login Failed');
}
//chmod command
echo $ssh->exec('sudo chmod -R 775 test_folder');
}
使用 chmod 命令后,我应该断开连接吗:
$ssh->disconnect();
还是保持这种状态可以?
是的,如果您完成了 SSH 命令,您应该disconnect
作为一个好习惯
我觉得没必要。当对象被销毁时,析构函数调用 disconnect
..
如果我像这样对 sftp 服务器内的文件夹使用 chmod:
public function connection()
{
//connection
$ssh = new SSH2('10.10.10.10');
if (!$ssh->login('login', 'passwrd'))
{
exit('Login Failed');
}
//chmod command
echo $ssh->exec('sudo chmod -R 775 test_folder');
}
使用 chmod 命令后,我应该断开连接吗:
$ssh->disconnect();
还是保持这种状态可以?
是的,如果您完成了 SSH 命令,您应该disconnect
作为一个好习惯
我觉得没必要。当对象被销毁时,析构函数调用 disconnect
..