当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP is_executable()用法及代码示例


PHP中的is_executable()函数是一个内置函数,用于检查指定文件是否为可执行文件。文件名作为参数发送到is_executable()函数,如果文件是可执行文件,则返回True,否则返回False。

用法:

bool is_executable($file)

使用的参数:
PHP中的is_executable()函数接受一个参数。


  • $file:它是指定文件的必需参数。

返回值:
如果该文件是可执行文件,则返回True,否则返回false。

异常

  • 失败时发出E_WARNING。
  • 此函数的结果被缓存,因此使用clearstatcache()函数清除缓存。
  • is_executable()函数为不存在的文件返回false。

以下示例程序旨在说明is_executable()函数。

程序1:

<?php 
$myfile = "gfg.exe"; 
  
// checking whether the file is  
// an executable file or not 
if (is_executable($myfile)) 
    echo ("$myfile:executable!"); 
else
    echo ("$myfile:not executable!"); 
  
?>

输出:

gfg.exe is executable!

程序2:

<?php 
// fileperms() function returns the  
// permission as a number on success 
// or FALSE on failure 
$permissions = fileperms("gfg.exe"); 
   
$permvalue = sprintf("%o", $permissions); 
   
// checking whether the file is executable 
// or not 
if (is_executable("gfg.exe")) 
    echo ("Executable file and File "
         "Permissions are:$permvalue"); 
else
    echo ("Not Executable file and File "
          "Permissions are:$permvalue"); 
  
?>

输出:

Executable file and File Permissions are:0644

参考:
http://php.net/manual/en/function.is-executable.php



相关用法


注:本文由纯净天空筛选整理自Shubrodeep Banerjee大神的英文原创作品 PHP | is_executable()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。