目录

PHP is_executable() 函数

❮ PHP 文件系统参考

示例

检查指定的文件名是否可执行:

<?php
$file = "setup.exe";
if(is_executable($file)) {
  echo ("$file is executable");
} else {
  echo ("$file is not executable");
}
?>

上面代码的输出可能是:

setup.exe is executable


定义和用法

is_executable() 函数检查指定的文件名是否可执行。

笔记:该函数的结果被缓存。使用清除统计缓存()清除缓存。

语法

is_executable( file)

参数值

Parameter Description
file Required. Specifies the path to the file to check


技术细节

返回值: 如果文件可执行则为 TRUE,如果失败则为 FALSE 并显示 E_WARNING
PHP 版本: 4.0+

❮ PHP 文件系统参考