1. 程式人生 > >php 利用ssh執行遠端或本地liunx伺服器命令

php 利用ssh執行遠端或本地liunx伺服器命令

/**
 * 利用ssh執行 遠端或本地liunx伺服器命令
 * 雖然可以用 shee_exec來執行本地機命令 但卻無法選擇用哪個使用者來執行 此函式可解決此類問題
 * $host ssh 主機名 可以為ip 或 域名
 * $port ssh 埠
 * $ssh_username ssh 登入使用者名稱
 * $ssh_password ssh 登入密碼
 * $command 要執行的liunx命令
 * 反回值行結果和錯誤資訊
 */
function ssh_exec($host, $port = 22, $ssh_username, $ssh_password, $command) {
    $con = ssh2_connect($host, $port);
    $auth_methods = ssh2_auth_none($con, $ssh_username);
    if (in_array('password', $auth_methods)) {//是否允許使用密碼登陸
        $auth_methods = ssh2_auth_password($con, $ssh_username, $ssh_password);
    }
    $stdout_stream = ssh2_exec($con, $command);
    $err_stream = ssh2_fetch_stream($stdout_stream, SSH2_STREAM_STDERR);

    stream_set_blocking($stdout_stream, true); //阻塞執行
    stream_set_blocking($err_stream, true);

    $result_stdout = stream_get_contents($stdout_stream);
    $result_error = stream_get_contents($err_stream);

    fclose($stdout_stream);
    fclose($err_stream);
    return array('result' => $result_stdout, 'error' => $result_error);
}