PHP class my ssh2

개요[ | ]

PHP class my_ssh2
  • 대충 만들어 본 PHP ssh2 wrapper
PHP
Copy
class my_ssh2 {
	private $conn;
	function __construct( $address, $username, $password, $port=22 ) {
		$this->conn = ssh2_connect( $address );
		if( !ssh2_auth_password($this->conn, $username, $password) ) {
			die('Authentication Failed...');
		}		
	}
	function exec( $command ) {
		$stream = ssh2_exec($this->conn, $command);
		stream_set_blocking($stream, true);
		return stream_get_contents($stream);		
	}
	function passthru( $str ) {
		$stream = ssh2_exec($this->conn, $str);
		stream_set_blocking($stream, true);
		while( $line = fgets($stream) ) { flush(); echo $line; }
	}
	function disconnect() {
		$this->exec( 'exit' );
		$this->conn = null;
	}
	function __destruct() {
		$this->disconnect();
	}
}
  • Jmnote
    운영자님 이메일이 뭡니까? 성현이다SKT
  • Jmnote
    운영자님 틀:강심장 (텔레비전 프로그램) 수정이 잘 안 되네요 가수티파니영은내아내이자운명
  • Jmnote
    틀:강심장 (텔레비전 프로그램) 수정했습니다.J Jmnote
  • Jmnote
    감사합니다. 가수티파니영은내아내이자운명
  • Jmnote
    SNL 코리아 (시즌 7)이 잘 안 되네요. 가수티파니영은내아내이자운명
  • Jmnote
    SNL 코리아 (시즌 7)에서 오류 나는 문제 해결했습니다.J Jmnote
  • Jmnote
    이 정도면 천재이신 것 같아요, 짱이세요. 가수티파니영은내아내이자운명
  • Jmnote
    래리 페이지 글 확인 버랍니다 가수티파니영은내아내이자운명
  • Jmnote
    구글 스프레드시트 글 확인 바랍니다. 가수티파니영은내아내이자운명
  • Jmnote
    구글 글 확인 바랍니다. 가수티파니영은내아내이자운명
  • Jmnote
    ✔️J Jmnote
  • Jmnote
    개인정보 관련으로 요청드릴 사항이 있습니다. 연락 부탁드립니다. Natural7530
  • Jmnote
    Special:EmailUser 기능을 이용하시면 됩니다.J Jmnote
  • 위키데이터 개론
    함께 참고할만한 ppt. [https://www.slideshare.net/HaklaeKim/ss-12778618 김학래님] Pinkcrimson