Skip to content

Instantly share code, notes, and snippets.

@pospi
Created September 24, 2013 01:59
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 pospi/6679428 to your computer and use it in GitHub Desktop.
Save pospi/6679428 to your computer and use it in GitHub Desktop.
Snippet to get the extension of a file with PHP in the fastest manner possible.
<?php
function extname($path)
{
return substr($path, strrpos($path, '.') + 1);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment