get extension file php code example
Example 1: php get file extension from filename
$ext = pathinfo($filename, PATHINFO_EXTENSION);
Example 2: get image extension in php
$imagetype = $_FILES['image']['name'];
$ext = pathinfo($imagetype, PATHINFO_EXTENSION);
Example 3: php get filename without extension
$file = 'image.jpg';
$info = pathinfo($file);
$file_name = basename($file, '.'.$info['extension']);
$file_name = $info['filename'];
Example 4: php file extension
$ext = end(explode(".",file_name));