目录

PHP rmdir() 函数

❮ PHP 文件系统参考

示例

删除 "images" 目录:

<?php
$path = "images";
if(!rmdir($path)) {
  echo ("Could not remove $path");
}
?>


定义和用法

rmdir() 函数删除一个空目录。

语法

rmdir( dir, context)

参数值

Parameter Description
dir Required. Specifies the path to the directory to be removed
context Optional. Specifies the context of the file handle. Context is a set of options that can modify the behavior of a stream


技术细节

返回值: TRUE 成功,FALSE 失败
PHP 版本: 4.0+

❮ PHP 文件系统参考