Skip to content

Instantly share code, notes, and snippets.

@wesleybliss
Created September 29, 2012 20:40
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 wesleybliss/3805136 to your computer and use it in GitHub Desktop.
Save wesleybliss/3805136 to your computer and use it in GitHub Desktop.
File Name & Extension Parsing
// Get a file's extension
$ext = array_pop( explode( '.', $fileName ) );
// Get a file's name without extension
$name = array_shift( explode( '.', $fileName ) );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment