is_executable() 函数检查指定的文件是否可执行。
is_executable(file)
参数 | 描述 |
---|---|
file | 必需。规定要检查的文件。 |
如果文件存在且可执行,则返回 true。
<?php $file = "setup.exe"; if(is_executable($file)) { echo ("$file is executable"); } else { echo ("$file is not executable"); } ?>
输出:
setup.exe is executable
如对本文有疑问,请提交到交流论坛,广大热心网友会为你解答!! 点击进入论坛
Powered by 365建站网 RSS地图 HTML地图
copyright © 2013-2024 版权所有 鄂ICP备17013400号