Detect file extension function

This function is used to find the file extension also you can use pathinfo() function for get information about a file path.

function ext($file_name)
{
   return substr($file_name, strrpos($file_name, '.') + 1);
}

Tags

No tag here.

Recommended pages

URL Checker...

This function check if an url is valid or not. function is_valid_url($url) { return preg_match('|^http(s)?://[a-z0-9-]+(.[a-z0-9-]+)*(:[0-9]+)?(/.*)?$|i', $url); }...

Change timestamp to custom format...

Use this function for change timestamp to custom format......

Resize image function...

Resize image function for jpg format. $mood between max and min. if you choose max, this mean max size of image is $ta otherwise min size of image is $ta. function makeTheThumb( $ppath, $ta, $mood ) ...

Parse a string into separate words...

Parse a string into separate words (array output). function parser($str, $char = ' ') { $str = trim($str); $str = $str . $char; $len = strlen($str); $words = array(); $w = '...