(PECL ssh2:0.10-0.9)
ssh2_sftp — Initialise un sous-système SFTP
Demande un sous-système SFTP depuis un serveur déjà connecté SSH2.
Un identifiant de connexion SSH, obtenu depuis la fonction ssh2_connect().
Cette méthode retourne une ressource SSH2 SFTP pour utilisation avec toutes les méthodes ssh2_sftp_*() ainsi que le gestionnaire ouvert ssh2.sftp://.
Exemple #1 Ouverture d'un fichier via SFTP
<?php
$connection = ssh2_connect('shell.example.com', 22);
ssh2_auth_password($connection, 'username', 'password');
$sftp = ssh2_sftp($connection);
$stream = fopen("ssh2.sftp://$sftp/path/to/file", 'r');
?>