您现在的位置是:首页 > PHP函数

李清波 2021-06-17 PHP函数 1766 复制当前网址

is_dir



PHP is_dir() 函数

定义和用法

is_dir() 函数检查指定的文件是否是目录。


语法

is_dir(file)

参数描述
file必需。规定要检查的文件。


说明

如果文件名存在并且为目录,则返回 true。如果 file 是一个相对路径,则按照当前工作目录检查其相对路径。


提示和注释

注释:本函数的结果会被缓存。请使用 clearstatcache() 来清除缓存。


例子

<?php
$file = "images";
if(is_dir($file))
  {
  echo ("$file is a directory");
  }
else
  {
  echo ("$file is not a directory");
  }
?>

输出:

images is a directory


文章来源:https://liqingbo.com/blog-615.html

上一篇:is_executable

下一篇:glob

评论