function getExtension($filename){ return ('.' . ($ext = pathinfo($filename, PATHINFO_EXTENSION)) == $filename) ? null : $ext;} // Example:var_dump(getExtension('.htaccess'), getExtension('image.jpg'));// Result:// NULL// string(3) "jpg"
There is not yet any comment !
1087 Rating: 0.0/10 (0 votes cast)