最新的Web開發教程
 

PHP is_executable() Function


<完整PHP文件系統參考

定義和用法

所述is_executable()函數檢查是否指定的文件是可執行的。

如果文件是可執行該函數返回TRUE。

句法

is_executable(file)

參數 描述
file 需要。 指定文件檢查

提示和注意

Note:本函數的結果會被緩存。 使用clearstatcache()來清除緩存。

Note:該is_executable()函數在PHP 5.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文件系統參考