Home  >  Article  >  Backend Development  >  PHP gets file extension name

PHP gets file extension name

WBOY
WBOYOriginal
2016-08-08 09:27:57928browse
PHP Get the file suffix namefunction fileSuffix($filename){

                 return strtolower(trim(substr(strrchr($filename, '.'), 1)));

}

?>strrchr ---PHP function, find the last occurrence of a string in another string, and return all characters from that position to the end of the string, if it fails, return false . substr ---PHP function, returns a part of the string. trim ---PHP function, remove whitespace characters or other predefined characters on both sides of a string. strtolower ---PHP function, convert string to lowercase.
(2)function get_extension($file)
{
return end(explode('.', $file));
}

The above introduces how to obtain the file suffix name in PHP, including the content. I hope it will be helpful to friends who are interested in PHP tutorials.

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn