(PHP 4, PHP 5, PHP 7)
ftp_delete — 删锟斤拷 FTP 锟斤拷锟斤拷锟斤拷锟较碉拷一锟斤拷锟侥硷拷
$ftp_stream
, string $path
) : bool
ftp_delete() 锟斤拷锟斤拷锟斤拷锟斤拷删锟斤拷 FTP 锟斤拷锟斤拷锟斤拷锟较碉拷一锟斤拷锟缴诧拷锟斤拷
path
指锟斤拷锟侥碉拷锟侥硷拷锟斤拷
ftp_stream
FTP 锟斤拷锟接碉拷锟斤拷锟接憋拷识锟斤拷锟斤拷
path
要删锟斤拷锟斤拷锟侥硷拷锟斤拷
锟缴癸拷时锟斤拷锟斤拷 TRUE
锟斤拷 锟斤拷锟斤拷锟斤拷失锟斤拷时锟斤拷锟斤拷 FALSE
锟斤拷
Example #1 ftp_delete() 锟斤拷锟斤拷
<?php
$file = 'public_html/old.txt';
// set up basic connection
$conn_id = ftp_connect($ftp_server);
// login with username and password
$login_result = ftp_login($conn_id, $ftp_user_name, $ftp_user_pass);
// try to delete $file
if (ftp_delete($conn_id, $file)) {
echo "$file deleted successful\n";
} else {
echo "could not delete $file\n";
}
// close the connection
ftp_close($conn_id);
?>