PHP is_file() 函数

定义和用法

is_file() 函数检查指定的文件名是否是正常的文件。

语法

  1. is_file(file)
参数 描述
file 必需。规定要检查的文件。

说明

如果文件存在且为正常的文件,则返回 true。

提示和注释

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

例子

例子 1

  1. <?php
  2. $file = "test.txt";
  3. if(is_file($file))
  4. {
  5. echo ("$file is a regular file");
  6. }
  7. else
  8. {
  9. echo ("$file is not a regular file");
  10. }
  11. ?>

输出:

  1. test.txt is a regular file

例子 2

  1. <?php
  2. var_dump(is_file('a_file.txt')) . "\n";
  3. var_dump(is_file('/usr/bin/')) . "\n";
  4. ?>

输出:

  1. bool(true)
  2. bool(false)