is_executable()函數(shù)可以檢查指定的文件是否可執(zhí)行。如果文件是可執(zhí)行文件,則此函數(shù)可以返回true。
bool is_executable ( string $filename )
該函數(shù)可以判斷文件名是否可執(zhí)行。
<?php $file = "/PhpProject/setup.exe"; if(is_executable($file)) { echo $file." is executable"; } else { echo $file." is not executable"; } ?>
輸出結果
/PhpProject/setup.exe is executablePHP Filesystem 參考手冊