Skip to content

Instantly share code, notes, and snippets.

@yoren
Forked from rugbyprof/php_get_extension.php
Created March 23, 2012 09:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yoren/2169019 to your computer and use it in GitHub Desktop.
Save yoren/2169019 to your computer and use it in GitHub Desktop.
Php return file extension
function get_file_ext( $filename )
{
return end( explode( ".", $filename ) );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment