ssh2_shell
(PECL ssh2 >= 0.9.0)
ssh2_shell — Demande un shell interactif
Description
resource ssh2_shell
( resource
$session
[, string $term_type
= "vanilla"
[, array $env
[, int $width
= 80
[, int $height
= 25
[, int $width_height_type
= SSH2_TERM_UNIT_CHARS
]]]]] )Ouvre un shell sur le serveur distant et lui alloue un flux.
Liste de paramètres
-
session
-
Un identifiant de connexion SSH, obtenu depuis la fonction ssh2_connect().
-
term_type
-
term_type
doit correspondre à une des entrées du fichier /etc/termcap du système cible. -
env
-
env
doit être passé en tant qu'un tableau associatif de paire nom/valeur à définir dans l'environnement cible. -
width
-
Largeur du terminal virtuel.
-
height
-
Hauteur du terminal virtuel.
-
width_height_type
-
width_height_type
doit être soitSSH2_TERM_UNIT_CHARS
, soitSSH2_TERM_UNIT_PIXELS
.
Valeurs de retour
Exemples
Exemple #1 Exécution d'une commande
<?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); ?>
Voir aussi
- ssh2_exec() - Exécute une commande sur un serveur distant
- ssh2_tunnel() - Ouvre un tunnel à travers un serveur distant
- ssh2_fetch_stream() - Parcours un flux étendu de données