8
isfilenameallowed
is_filename_allowed
SYNOPSIS
is_filename_allowed($name)
DESCRIPTION
is_filename_allowed
retourne false
si $name
est un nom de fichier interdit dans un téléchargement de contenu, true
si $name
est autorisé.
La liste des noms de fichier interdits est définie par le paramètre de configuration $blackfilelist
dans le fichier includes/config.inc.
global $blackfilelist;
$blackfilelist = array('.htaccess', 'index.html', 'index.phtml', 'index.php');
CODE
- function is_filename_allowed($file) {
- global $blackfilelist;
- return !in_array($file, $blackfilelist);
- }
Commentaires