PHP: Vérifier si un fichier est exécutable



Is the file executable: is_executable


";
      return;
   }
   print "$f is ".(is_executable( $f )?"":"not ")."executable
"; } ?>                    

PHP: Vérifier si le fichier est lisible



Is the file readable: is_readable()


";
      return;
   }
   print "$f is ".(is_readable( $f )?"":"not ")."readable
"; } ?>