A função is_executable () pode verificar se o arquivo especificado é executável. Esta função pode retornar verdadeiro se o arquivo for executável.
Sintaxe
bool is_executable ( string $filename )
Esta função pode dizer se o nome do arquivo é executável.
Exemplo
<?php
$file = "/PhpProject/setup.exe";
if(is_executable($file)) {
echo $file." is executable";
} else {
echo $file." is not executable";
}
?>
Resultado
/PhpProject/setup.exe is executable