ssh2_exec
(PECL)
ssh2_exec --
Execute a command on a remote server
Description
resource
ssh2_exec ( resource session, string command [, string pty [, array env [, int width [, int height [, int width_height_type]]]]] )
Execute a command at the remote end and allocate a channel for it.
Returns a stream on success or FALSE on failure.
Example 1. Executing a command
<?php $connection = ssh2_connect('shell.example.com', 22); ssh2_auth_password($connection, 'username', 'password');
$stream = ssh2_exec($connection, '/usr/local/bin/php -i'); ?>
|
|
See Also:
ssh2_connect(),
ssh2_shell(), and
ssh2_tunnel()