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

PHP gets file extension name

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Release: 2016-08-08 09:27:57
Original
987 people have browsed it
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.

Related labels:
source:php.cn
Statement of this Website
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
Latest Issues
php data acquisition?
From 1970-01-01 08:00:00
0
0
0
PHP extension intl
From 1970-01-01 08:00:00
0
0
0
How to learn php well
From 1970-01-01 08:00:00
0
0
0
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template