<?php
$file='cdd.jpg';
function get_extension1($file){
$a=substr(strrchr($file,'.'),1);
echo $a;
} function get_extension2($file){
$b=explode('.',$file); $a=end($b);
}
get_extension2($file);