6
isfilenameallowed
is_filename_allowed
SYNOPSIS
is_filename_allowed($name)
DESCRIPTION
is_filename_allowed
returns false
if $name
is a file name which is forbidden when uploading a file, true
if $name
is allowed.
The list of forbidden file names is defined by the configuration parameter $blackfilelist
in the file 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);
- }
Comments