function get_extension($file) { substr(strrchr($file, '.'), 1); } |
function get_extension($file) { return substr($file, strrpos($file, '.')+1); } |
function get_extension($file) { return end(explode('.', $file)); } |
function get_extension($file) { $info = pathinfo($file); return $info['extension']; } |
function get_extension($file) { return pathinfo($file, PATHINFO_EXTENSION); } |