Skip to content

Instantly share code, notes, and snippets.

@unlight
Created October 19, 2011 19:35
Show Gist options
  • Save unlight/1299414 to your computer and use it in GitHub Desktop.
Save unlight/1299414 to your computer and use it in GitHub Desktop.
pathinfo(Filepath, PATHINFO_EXTENSION);
var GetExtension = function(Path) {
var S = Path + '';
return S.substr( S.lastIndexOf('.') + 1 );
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment