<完整PHP文件系统参考
定义和用法
所述is_executable()函数检查是否指定的文件是可执行的。
如果文件是可执行该函数返回TRUE。
句法
is_executable(file)
参数 | 描述 |
---|---|
file | 需要。 指定文件检查 |
提示和注意
Note:本函数的结果会被缓存。 使用clearstatcache()来清除缓存。
Note:该is_executable()函数在PHP 5.0成为可与Windows
例
<?php
$file = "setup.exe";
if(is_executable($file))
{
echo ("$file is executable");
}
else
{
echo ("$file is not executable");
}
?>
代码的输出以上可以是:
setup.exe is executable
<完整PHP文件系统参考