ssh2_exec

(PECL)

ssh2_exec --  Exécute une commande sur un serveur distant

Description

resource ssh2_exec ( resource session, string command [, string pty [, array env [, int width [, int height [, int width_height_type]]]]] )

ssh2_exec() exécute une commande sur le serveur distant et lui alloue un canal. Retourne un flux en cas de succès, FALSE sinon.

Exemple 1. Exécution d'une commande

<?php
$connection
= ssh2_connect('shell.example.com', 22);
ssh2_auth_password($connection, 'username', 'password');

$stream = ssh2_exec($connection, '/usr/local/bin/php -i');
?>

Voir aussi ssh2_connect(), ssh2_shell() et ssh2_tunnel().

Hosting by: Hurra Communications GmbH
Generated: 2007-01-26 18:01:56