Rickson
Rickson

Reputation: 127

Should i disconnect after using a ssh through php?

If i use chmod to a folder inside a sftp server just like this:

    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');
     }

after using the chmod command, should i disconnect doing something like this:

$ssh->disconnect();

or it's ok to keep that way?

Upvotes: 1

Views: 399

Answers (2)

neubert
neubert

Reputation: 16802

I don't think it's necessary. The destructor calls disconnect when the object is destroyed..

Upvotes: 2

Paras
Paras

Reputation: 9465

Yes, if you're done with your SSH commands, you should disconnect as a good practice

Upvotes: 3

Related Questions