欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

php is_executable判断给定文件名是否可执行实例

程序员文章站 2024-02-29 19:31:58
php is_executable函数用于判断某一文件是否可以执行,如果文件存在且可执行则返回 true ,错误时返回 false, 本文章向大家介绍is_executab...

php is_executable函数用于判断某一文件是否可以执行,如果文件存在且可执行则返回 true ,错误时返回 false, 本文章向大家介绍is_executable函数的基本语法和使用实例。

 php is_executable函数介绍

is_executable函数用于判断给定文件名是否可执行

语法:

bool is_executable  ( string $filename  )

判断给定文件名是否可执行。

参数:

filename  文件的路径。

返回值:

如果文件存在且可执行则返回 true ,错误时返回 false 。 

php is_executable函数实例

使用is_executable判断permissions.php文件是否可以执行,代码如下:

<?php
$file_name="permissions.php";

//only works on windows with php 5.0.0 or later
if(is_executable($file_name)) {
  echo ("the file $file_name is executable.<br />");
}
else {
  echo ("the file $file_name is not executable.<br />");
}
?>





以上就是对php is_executable判断给定文件名是否可执行的资料整理,后续继续补充相关资料,谢谢大家对本站的支持!