删除 FTP 服务器上的目录:
<?php
// connect and login to FTP server
$ftp_server = "ftp.example.com";
$ftp_conn = ftp_connect($ftp_server) or die("Could not connect to $ftp_server");
$login = ftp_login($ftp_conn, $ftp_username, $ftp_userpass);
$dir = "php/";
// try to delete $dir
if (ftp_rmdir($ftp_conn, $dir))
{
echo "Directory $dir deleted";
}
else
{
echo "Problem deleting $dir";
}
// close connection
ftp_close($ftp_conn);
?>
ftp_rmdir() 函数删除 FTP 服务器上的目录。
笔记:目录必须为空才能删除!
提示:使用ftp_mkdir()函数创建一个新目录。
ftp_rmdir(
ftp_conn, dir);
Parameter | Description |
---|---|
ftp_conn | Required. Specifies the FTP connection to use |
dir | Required. Specifies the empty directory to delete |
返回值: | TRUE 成功,FALSE 失败 |
---|---|
PHP 版本: | 4+ |
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!