You Are Here: Home »   Code Tuesday January 6th 2009

Code Library - php

Return File Extension - (975 views)


<?php
function getext($file) {
  
$ext explode("."$file);
  return 
$ext[1];
}
?>