说明
bool 
is_executable ( string filename)
     如果文件存在且可执行则返回 TRUE。
    
     is_executable() 自 PHP 5.0.0 版起可用于 Windows。
    
     
例子 1. is_executable() 例子 
<?php
  $file = '/home/vincent/somefile.sh';
  if(is_executable($file)) {     echo $file.' is executable'; } else {     echo $file.' is not executable'; }
  ?>
 |  
  | 
    注: 本函数不能作用于远程文件,被检查的文件必须通过服务器的文件系统访问。
     参见 is_file()
     和 is_link()。