继续浏览精彩内容
慕课网APP
程序员的梦工厂
打开
继续
感谢您的支持,我会继续努力的
赞赏金额会直接到老师账户
将二维码发送给自己后长按识别
微信支付
支付宝支付

php利用ssh操作远程服务器

慕田峪是谁我也不认识
关注TA
已关注
手记 271
粉丝 40
获赞 95

首先,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。


打开App,阅读手记
0人推荐
发表评论
随时随地看视频慕课网APP