亚洲乱码中文字幕综合,中国熟女仑乱hd,亚洲精品乱拍国产一区二区三区,一本大道卡一卡二卡三乱码全集资源,又粗又黄又硬又爽的免费视频

PHP is_executable() 函數(shù)

定義和用法

is_executable() 函數(shù)檢查指定的文件是否可執(zhí)行。

語(yǔ)法

is_executable(file)
參數(shù) 描述
file 必需。規(guī)定要檢查的文件。

說(shuō)明

如果文件存在且可執(zhí)行,則返回 true。

提示和注釋

注釋:本函數(shù)的結(jié)果會(huì)被緩存。請(qǐng)使用 clearstatcache() 來(lái)清除緩存。

注釋: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