is_executable

is_executable() 函式檢查指定的檔案是否可執行。

基本介紹

  • 外文名:is_executable
  • 定義:檢查指定的檔案是否可執行
  • 語法:executable(file)
  • 說明:如果檔案存在且可執行
語法,說明,提示和注釋,例子,

語法

is_executable(file)
參數
描述
file
必需。規定要檢查的檔案。

說明

如果檔案存在且可執行,則返回 true。

提示和注釋

注釋:本函式的結果會被快取。請使用 clearstatcache() 來清除快取。
注釋:is_executable() 自 PHP 5.0.0 版起可用於 Windows。

例子

<?php
$file = "setup.exe";
if(is_executable($file)) { echo ("$file is executable");
} else { echo ("$file is not executable");
} ?>
輸出:
setup.exe is executable
PHP Filesystem 函式

相關詞條

熱門詞條

聯絡我們