ssh2_sftp_rmdir
(PECL ssh2 >= 0.9.0)
ssh2_sftp_rmdir — ディレクトリを削除する
例
例1 リモートサーバー上のディレクトリの削除
<?php
$connection = ssh2_connect('shell.example.com', 22);
ssh2_auth_password($connection, 'username', 'password');
$sftp = ssh2_sftp($connection);
ssh2_sftp_rmdir($sftp, '/home/username/deltodel');
/* もしくは次の通り: rmdir("ssh2.sftp://$sftp/home/username/dirtodel"); */
?>
+add a note
User Contributed Notes
There are no user contributed notes for this page.
↑ and ↓ to navigate •
Enter to select •
Esc to close
Press Enter without
selection to search using Google