(PHP 4, PHP 5, PHP 7)
ftp_delete — FTP サーバー上のファイルを削除する
$ftp_stream
, string $path
)
ftp_delete() は、path
で指定したファイルを FTP サーバーから削除します。
ftp_stream
FTP 接続のリンク ID 。
path
削除するファイル。
成功した場合に TRUE
を、失敗した場合に FALSE
を返します。
例1 ftp_delete() の例
<?php
$file = 'public_html/old.txt';
// 接続を確立する
$conn_id = ftp_connect($ftp_server);
// ユーザー名とパスワードでログインする
$login_result = ftp_login($conn_id, $ftp_user_name, $ftp_user_pass);
// $file の削除を試みる
if (ftp_delete($conn_id, $file)) {
echo "$file deleted successful\n";
} else {
echo "could not delete $file\n";
}
// 接続を閉じる
ftp_close($conn_id);
?>