php利用ssh操作遠端伺服器

disable發表於2021-09-09

首先,php需要支援ssh2的擴充套件。

1登陸

$connection=ssh2_connect($ip,$port);

ssh2_auth_password($connection,$username,$password);

2執行命令

$get_devices = "adb devices";

$stream = ssh2_exec($connection , $get_devices);

3獲取命令執行結果

stream_set_blocking($stream, true);

$output = stream_get_contents($stream);

fclose($stream);

此時,獲取string型別的output。


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/200/viewspace-2809763/,如需轉載,請註明出處,否則將追究法律責任。

相關文章