php is_executable 判斷文件是可執行文件
is_executable
( PHP 4中, PHP 5中)
is_executable -告訴是否是可執行文件名
描述
布爾is_executable (字符串$文件名)
告訴是否filename是可執行文件。
參數
文件名
文件路徑。
返回值
返回TRUE ,如果文件存在且可執行,或FALSE的錯誤。
修改
版本說明
5.0.0 is_executable ( )成為可與Windows
實例
例如# 1 is_executable ( )的例子
$file = '/home/vincent/somefile.sh';
if (is_executable($file)) {
echo $file.' is executable';
} else {
echo $file.' is not executable';
}
?>