PHP File extension - How to get file extension ? Get link Facebook X Pinterest Email Other Apps You can get a file extension in PHP using function pathinfo(). Here is sample usage: $extension = pathinfo( $fileName , PATHINFO_EXTENSION ); Read more