Quick Search:
 
 PHP Code: Really Get File Extension Jump to:  
Category: >> PHP Code >> Really Get File Extension  

<< lastnext >>

Snippet Name: Really Get File Extension

Description: A function that gets the real file extension. Returns an empty string if file has no extension.

Comment: (none)

Language: PHP
Highlight Mode: PHP
Last Modified: March 01st, 2009

<?PHP 
 
FUNCTION ReallyGetFileExtension(&$filename){ 
  RETURN EREG( ".([^\.]+)$", $filename, $r ) ? $r[1] : ""; 
} 
 
?>


 
   Home |    Search |    Code Library |    Sponsors |    Privacy |    Terms of Use |    Contact Us © 2003 - 2024 psoug.org