Skip to content

Instantly share code, notes, and snippets.

@newbdez33
Last active December 11, 2015 02:09
Show Gist options
  • Save newbdez33/4528944 to your computer and use it in GitHub Desktop.
Save newbdez33/4528944 to your computer and use it in GitHub Desktop.
get file extension php
<?php
$path = 'abc.jpeg';
$ext = pathinfo($path,PATHINFO_EXTENSION);
echo $ext;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment