Skip to content

Instantly share code, notes, and snippets.

@Kloport
Last active October 21, 2017 13:46
Show Gist options
  • Save Kloport/6cfbed0a34c124971186b3299e7390b7 to your computer and use it in GitHub Desktop.
Save Kloport/6cfbed0a34c124971186b3299e7390b7 to your computer and use it in GitHub Desktop.
// Ordered by execution speed
$ext = pathinfo($filename, PATHINFO_EXTENSION);
$ext = substr(strrchr($filename, '.'), 1);
$ext = substr($filename, strrpos($filename, '.') + 1);
$ext = preg_replace('/^.*\.([^.]+)$/D', '$1', $filename);
$ext = end(explode('.', $filename));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment