PHP ftp_rmdir() 函数
PHP ftp_rmdir() 函数
完整的 PHP FTP 参考手册定义和用法
The ftp_rmdir() 函数删除 FTP 服务器上的一个目录。
如果成功,该函数返回 TRUE。如果失败,则返回 FALSE。
语法
ftp_rmdir(ftp_connection,dir)
参数 | 描述 |
---|---|
ftp_connection | 必需。规定要使用的 FTP 连接。 |
dir | 必需。规定要删除的目录。 |
实例
<?php
$conn = ftp_connect("ftp.testftp.com") or die("Could not connect");
ftp_login($conn,"admin","ert456");
ftp_rmdir($conn,"testdir");
ftp_close($conn);
?>
$conn = ftp_connect("ftp.testftp.com") or die("Could not connect");
ftp_login($conn,"admin","ert456");
ftp_rmdir($conn,"testdir");
ftp_close($conn);
?>
完整的 PHP FTP 参考手册
相关文章
- PHP 简介
- PHP echo 和 print 语句
- PHP EOF(heredoc) 使用说明
- PHP 常量
- PHP 面向对象
- PHP $_POST 变量
- PHP Cookie
- PHP 发送电子邮件
- PHP Secure E-mails
- PHP array_fill() 函数
- PHP array_intersect_ukey() 函数
- PHP array_map() 函数
- PHP array_shift() 函数
- PHP array_sum() 函数
- PHP array_udiff_uassoc() 函数
- PHP each() 函数
- PHP sizeof() 函数
- PHP Libxml 函数
- PHP Mail 函数
- PHP 杂项 函数