PHP File extension - How to get file extension ?

You can get a file extension in PHP using function pathinfo(). Here is sample usage:$extension = pathinfo( $fileName , PATHINFO_EXTENSION );

Comments