PHP is_executable() 函數(shù)
PHP is_executable() 函數(shù)

定義和用法
is_executable() 函數(shù)檢查指定的文件是否可執(zhí)行。
如果文件可執(zhí)行,該函數(shù)返回 TRUE。
語法
is_executable(file)
參數(shù) | 描述 |
---|---|
file | 必需。規(guī)定要檢查的文件。 |
提示和注釋
注釋:該函數(shù)的結(jié)果會被緩存。請使用 clearstatcache() 來清除緩存。
注釋:自 PHP 5.0 版本起,is_executable() 函數(shù)可用于 Windows。
實(shí)例
<?php
$file = "setup.exe";
if(is_executable($file))
{
echo ("$file is executable");
}
else
{
echo ("$file is not executable");
}
?>
$file = "setup.exe";
if(is_executable($file))
{
echo ("$file is executable");
}
else
{
echo ("$file is not executable");
}
?>
上面的代碼將輸出:
setup.exe is executable

相關(guān)文章
- PHP echo 和 print 語句
- PHP 類型比較
- PHP 常量
- PHP While 循環(huán)
- PHP $_GET 變量
- PHP 發(fā)送電子郵件
- PHP 高級過濾器
- PHP array_keys() 函數(shù)
- PHP array_map() 函數(shù)
- PHP array_product() 函數(shù)
- PHP array_replace() 函數(shù)
- PHP array_udiff_uassoc() 函數(shù)
- PHP array_uintersect() 函數(shù)
- PHP array_unique() 函數(shù)
- PHP arsort() 函數(shù)
- PHP asort() 函數(shù)
- PHP count() 函數(shù)
- PHP current() 函數(shù)
- PHP list() 函數(shù)
- PHP uksort() 函數(shù)