(PECL ssh2 >= 0.9.0)
ssh2_shell — 対話式のシェルを要求する
$session,$termtype = "vanilla",$env = null,$width = 80,$height = 25,$width_height_type = SSH2_TERM_UNIT_CHARSリモートエンド上のシェルをオープンし、そのためのストリームを割り当てます。
sessiontermtypetermtype は対象システムの
/etc/termcap に記載されたエントリの一つに相当します。
envenv には、
対象の環境に設定する名前/値の組の連想配列を渡すことができます。
widthheightwidth_height_typewidth_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_shell($connection, 'vt102', null, 80, 24, SSH2_TERM_UNIT_CHARS);
?>