Post Description: how to display show get file extension getting uploaded file extension type
how, to, display, show, get, file, extension, getting, uploaded, file, extension, type
This Post Has Been Viewed 662 Times Since Fri Feb 29, 2008 12:01 pm Posted By web hosting with 4 replies
POST# 668
Posted On: Fri Feb 29, 2008 12:01 pm
Topic: How To Display Show Get File Extension Getting Uploaded File Extension Type
like many websites, they offer their visitors to upload files such as images, photos, zip, documents, text, and more, its important to know what type of files you are allowing your visitors to upload to your site. for example, if i have a form for a user to upload an image file, i should have my script check to make sure its an image file and not a file that can harm your server.
so to get the file extension i can use the substr() strrpos() PHP functions to be able to get the type of file a user is uploading..
lets say the file name is called wallpaperama.jpg so this is how i would declare the value of my string:
$fileName = 'wallpaperama.jpg';
then i want to find out what are the characters after the . (dot) with this code:
$ext = substr($fileName, strrpos($fileName, '.') + 1);
and this is the complete script:
<?
$fileName = 'wallpaperama.jpg';
$ext = substr($fileName, strrpos($fileName, '.') + 1);
echo 'The file extension is: .'.$ext;
?>
to see the script in action all you have to do is copy and paste the complete code above to a text editor like notepad and save it as wallpaperama.com and upload to your website, then open it with your browser. NOTE: your website must have PHP, if your website doesn't have PHP, go to www.webune.com to sign up for PHP webshosting.
COURTESY: this tutorial guide was brought to you by www.webune.com
Sun Jul 15, 2007 6:00 pm
4
maca
Reply #1550
i would like to learn that, you know, split the file into the filne name and the file extension into two separate string, well, i was able to figure out how to get the file name and remove the extension from the file name with this fucntion:
I use this function to remove the file extension and display only the file name without the extension of the file name: this is good when you have users upload files and you can rename the to whatever you want and then display them on the website with the new name:
<?
function remove_ext($filename) {
$extension = strrchr($filename, '.');
if($extension !== false){
$filename = substr($filename, 0, -strlen($extension));
}
return $filename;
}
$filename = 'wallpaperama.jpg';
echo remove_ext($filename);
?>
OUTPUT:
The file name without extension is: wallpaperama