Last Updated: February 25, 2016
·
382
· bnquoctoan

Get a file extension from file name

It's sound...crazy but sometime it's really useful. :). You can reuse it many times in your application.
<?php
function getfileextension($filename) {
return substr(strrchr($file
name,'.'),1);
}
?>

1 Response
Add your response

Or php's built in function pathinfo

over 1 year ago ·