is_file() 函数检查指定的文件名是否是正常的文件。
is_file(file)
参数 | 描述 |
---|---|
file | 必需。规定要检查的文件。 |
如果文件存在且为正常的文件,则返回 true。
注释:本函数的结果会被缓存。请使用 clearstatcache() 来清除缓存。
<?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
<?php var_dump(is_file('a_file.txt')) . "n"; var_dump(is_file('/usr/bin/')) . "n"; ?>
输出:
bool(true) bool(false)
如对本文有疑问,请提交到交流论坛,广大热心网友会为你解答!! 点击进入论坛
Powered by 365建站网 RSS地图 HTML地图
copyright © 2013-2024 版权所有 鄂ICP备17013400号