How to Get File Extension in PHP
PHP function to get file extension:
function get_file_extension( $file ) { return pathinfo($file, PATHINFO_EXTENSION); } |
It returns the file extension, i.e. mp3.
References:
More Related Posts
- [2016/05/19] Check if a String Contains Multiple Wo...
- [2016/06/04] Check if a Number is Multiple of Anoth...
- [2016/05/20] Turn Off Expose_PHP (Hide X-Powered-By...
- [2016/05/26] How to Increase PHP Memory Limit
- [2016/05/25] Disable PHP Notice: Undefined variable...
- [2016/05/27] PHP Domain Parser: Domain\URL Parser P...
- [2016/05/19] Validate Value as Integer in PHP
- [2016/05/19] Remove Non-Alphanumeric Characters fro...