is_executable() 函式檢查指定的檔案是否可執行。
基本介紹
- 外文名:is_executable
- 定義:檢查指定的檔案是否可執行
- 語法:executable(file)
- 說明:如果檔案存在且可執行
語法
is_executable(file) |
參數 | 描述 |
file | 必需。規定要檢查的檔案。 |
說明
提示和注釋
例子
<?php $file = "setup.exe"; if(is_executable($file)) { echo ("$file is executable"); } else { echo ("$file is not executable"); } ?> |
setup.exe is executable |