英 [?g?zekj?t?bl]

adj. ?? ??, ?? ??

PHP is_executable() ?? ???

??: ??? ??? ?? ???? ?????.

??: ??is_executable(??)

????:

ParametersDescription
?? ?????. ??? ??? ?????.?

??: ??? ???? ?? ??? ?? true? ?????.

PHP is_executable() ?? ?

<?php
$file = is_executable("./test.txt");
if($file == 1)
{
    echo "該文件是可執(zhí)行的";
}else{
    echo "該文件不可執(zhí)行";
}
?>