Tuesday, February 16, 2010

Get file extension in php

The file extension with all details can get below given way


/*** example usage ***/$filename 'filename.blah.txt';//this is file name or any file also can uploaded
/*** get the path info ***/$info pathinfo($filename);//
/*** show the extension ***/echo $info['extenstion'];//
?>

No comments:

Post a Comment