is_executable
(PHP 4, PHP 5, PHP 7, PHP 8)
is_executable — 判斷給定檔名是否可執行
說明
is_executable(string
$filename
): bool判斷給定檔名是否可執行。
參數
-
filename
-
檔案的路徑。
返回值
如果檔案存在且可執行則返回 true
,錯誤時返回false
。
更新日誌
版本 | 說明 |
---|---|
5.0.0 | is_executable() 開始可用以于 Windows。 |
範例
示例 #1 is_executable() 例子
<?php
$file = '/home/vincent/somefile.sh';
if (is_executable($file)) {
echo $file.' is executable';
} else {
echo $file.' is not executable';
}
?>
錯誤/異常
失敗時拋出E_WARNING
警告。
註釋
注意: 此函式的結果會被快取。參見 clearstatcache() 以獲得更多細節。
小技巧
自 PHP 5.0.0 起, 此函式也用於某些 URL 包裝器。請參見 支援的協議和封裝協議以獲得支援 stat() 系列函式功能的包裝器列表。