function getExtension($file) { return pathinfo($file, PATHINFO_EXTENSION); }
function getExtension($file) { $file = basename($file); $info = explode('.', $file); if (count($info)<2) { return ''; } end($info); }