Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

What is the best way to validate filename using PHP and how to do it?

I want to see if filename contains only "a-z", "0-9" and "-". Allso make shore the file has no capital letters.

<?php

$file = 'the-name.ext';

if ($file == 'only contains a-z, 0-9 or "-"' // HOW TO
&& $file == 'lowercasse'  // HOW TO
&& $file == 'a-z')  // HOW TO
{
// upload code here
}
else{
echo 'The file "' . $file . '"was not uploaded. The file can only contain "a-z", "0-9" and "-". Allso the files must be lowercasse. ';
}

?>

Ended up doing like this, to get rid of the file extension:

$filename = 'fil-name.jpg';
$filname_without_ext = pathinfo($filename, PATHINFO_FILENAME);
if(preg_match('/^[a-z0-9-]+$/',$filname_without_ext)) {
   echo'$file is valid';
} else {
   echo'$file is not valid';
}
share|improve this question
1  
On a side matter: your else message is misleading, as it seems to refer to file content, not names. – Grant Thomas Dec 14 '11 at 8:29

3 Answers

up vote 5 down vote accepted
if(preg_match('/^[a-z0-9-]+\.ext$/', $file)) {
    // .. upload
} else {
    echo 'The file "' . $file . '"was not uploaded. The file can only contain "a-z", "0-9" and "-". Allso the files must be lowercase. ';

}

Change ext with your required extension. Or better yet, strip it with pathinfo, and use finfo to ensure the file is of the correct type.

share|improve this answer
THANKS Michael, that's why i didn't got it to work. I forgot the file extension... – Hakan Dec 14 '11 at 8:35
if(preg_match('/^[a-z0-9-]+$/',$file)) {
   // $file is valid
} else {
   // $file is not valid
}
share|improve this answer

Simply using regex will do the work for you

([a-z0-9-]+)

This pattern will match a-z, 0-9 and -

share|improve this answer
This ignores any file extension – Michael Robinson Dec 14 '11 at 8:36

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.