(PECL ssh2 >= 0.9.0)
ssh2_exec — リモートサーバー上でコマンドを実行する
$session
, string $command
[, string $pty
[, array $env
[, int $width = 80
[, int $height = 25
[, int $width_height_type = SSH2_TERM_UNIT_CHARS
]]]]] ) : resourceコマンドをリモートエンドで実行し、チャネルを割り当てます。
sessionssh2_connect() のコールによって取得した SSH 接続リンク ID。
command
pty
env
env には、
対象となる環境で設定する名前/値のペアを連想配列で渡します。
width仮想端末の幅。
height仮想端末の高さ。
width_height_type
width_height_type は、
SSH2_TERM_UNIT_CHARS あるいは
SSH2_TERM_UNIT_PIXELS のいずれかです。
成功時にストリームを返し、失敗した場合に FALSE を返します。
例1 コマンドの実行
<?php
$connection = ssh2_connect('shell.example.com', 22);
ssh2_auth_password($connection, 'username', 'password');
$stream = ssh2_exec($connection, '/usr/local/bin/php -i');
?>