我正在尝试使用php ssh2脚本创建多个命令,但它只执行最后一个命令,例如,如果我有ssh2_exec($con, $save $reboot);
它只执行$ reboot,我也尝试ssh2_exec($con, "save; reboot");
但是它正在做同样的事......这是我的代码,对不起我的坏英语请说:)
$stream = ssh2_exec($con, $save $reboot);
stream_set_blocking( $stream, true );
$data = "";
while( $buf = fread($stream,4096) ){
$data .= $buf;
}
fclose($stream);
echo $data;