PHP ftp_rmdir() 函数
PHP 教程
· 2019-01-26 12:59:01
定义和用法
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);
?>
点击查看所有 PHP 教程 文章: https://codercto.com/courses/l/5.html
Elements of Information Theory
Thomas M. Cover、Joy A. Thomas / Wiley-Blackwell / 2006-7 / GBP 76.50
The latest edition of this classic is updated with new problem sets and material The Second Edition of this fundamental textbook maintains the book's tradition of clear, thought-provoking instr......一起来看看 《Elements of Information Theory》 这本书的介绍吧!