Net_SSH2::isConnected PHP 메소드

isConnected() 공개 메소드

Is the connection still active?
public isConnected ( ) : boolean
리턴 boolean
    function isConnected()
    {
        return (bool) ($this->bitmap & NET_SSH2_MASK_CONNECTED);
    }

Usage Example

예제 #1
0
파일: Ssh.php 프로젝트: sayiho/Jumper
 /**
  * @return bool
  */
 public function isConnected()
 {
     return $this->ssh->isConnected();
 }
All Usage Examples Of Net_SSH2::isConnected