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

李清波 2015-09-30 PHP函数 1822 复制当前网址

is_file



PHP is_file() 函数

定义和用法

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


语法

is_file(file)

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


说明

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


提示和注释

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


例子

例子 1

<?php
$file = "test.txt";
if(is_file($file))
  {
  echo ("$file is a regular file");
  }
else
  {
  echo ("$file is not a regular file");
  }
?>

输出:

test.txt is a regular file


例子 2

<?php
var_dump(is_file(a_file.txt)) . "\n";
var_dump(is_file(/usr/bin/)) . "\n";
?>

输出:

bool(true)
bool(false)


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

上一篇:is_link

下一篇:is_executable

评论