is_executable() 函數檢查指定的檔案是否可執行。
如果檔案可執行,則函數傳回TRUE。
is_executable(file)
參數 | 描述 |
---|---|
file | 必需。規定要檢查的文件。 |
註:該函數的結果會被緩存。請使用clearstatcache() 來清除快取。
註:自PHP 5.0 版本起,is_executable() 函數可用於Windows。
<?php$file = "setup.exe";if(is_executable($file)) { echo ("$file is executable"); }else { echo ("$file is not executable"); }?>
上面的程式碼將輸出:
setup.exe is executable