PHP
Referenzliste
ssh2_sftp_unlink
SSH2 Funktionen
Befehl:
bool ssh2_sftp_unlink ( resource $sftp , string $filename )
Parameter-Liste:
Beschreibung | |
---|---|
Ein SSH2 SFTP Ressource geöffnet von ssh2_sftp(). | |
Beschreibung:
Löscht eine Datei auf dem Remote-Dateisystem.
Aktiv in Version:
(PECL ssh2 >= 0.9.0)
Siehe auch:
ssh2_sftp_unlink() - Beispiel:
Eingabe:
<?php $connection = ssh2_connect('shell.example.com', 22); ssh2_auth_password($connection, 'username', 'password'); $sftp = ssh2_sftp($connection); ssh2_sftp_unlink($sftp, '/home/username/stale_file'); ?>
SSH2 Funktionen