Sunday, 1 May 2011

To get the file extension

$filename = Name of the file

function findfileextension($filename)
{
     if(strpos(strrev($filename), ".")===false)
     {
            return "";
     }
     else
     {
         $ipos = strpos(strrev($filename), ".");
         $ext = substr($filename, -1*$ipos);
       
         return $ext;
     }
}

No comments:

Post a Comment