array ( 0 => 'index.php', 1 => 'PHP Manual', ), 'head' => array ( 0 => 'UTF-8', 1 => 'uk', ), 'this' => array ( 0 => 'function.ftp-delete.php', 1 => 'ftp_delete', 2 => 'Deletes a file on the FTP server', ), 'up' => array ( 0 => 'ref.ftp.php', 1 => 'Функції FTP', ), 'prev' => array ( 0 => 'function.ftp-connect.php', 1 => 'ftp_connect', ), 'next' => array ( 0 => 'function.ftp-exec.php', 1 => 'ftp_exec', ), 'alternatives' => array ( ), 'source' => array ( 'lang' => 'en', 'path' => 'reference/ftp/functions/ftp-delete.xml', ), 'history' => array ( ), ); $setup["toc"] = $TOC; $setup["toc_deprecated"] = $TOC_DEPRECATED; $setup["parents"] = $PARENTS; manual_setup($setup); contributors($setup); ?>
(PHP 4, PHP 5, PHP 7, PHP 8)
ftp_delete — Deletes a file on the FTP server
ftp_delete() deletes the file specified by
filename from the FTP server.
| Версія | Опис |
|---|---|
| 8.1.0 |
Тепер параметр ftp має бути примірником
FTP\Connection. Раніше очікувався resource.
|
Приклад #1 ftp_delete() example
<?php
$file = 'public_html/old.txt';
// set up basic connection
$ftp = ftp_connect($ftp_server);
// login with username and password
$login_result = ftp_login($ftp, $ftp_user_name, $ftp_user_pass);
// try to delete $file
if (ftp_delete($ftp, $file)) {
echo "$file deleted successful\n";
} else {
echo "could not delete $file\n";
}
// close the connection
ftp_close($ftp);
?>