N methods for getting File extensions in PHP _ PHP Tutorial-php Tutorial

Source: Internet
Author: User
PHP to obtain the file extension N methods. In PHP, N methods for obtaining file extensions are collected from the Internet, basically in the following ways: 1st methods: functionget_extension ($ file) {substr (strrchr ($ file ,.), 1);} N methods for getting File extensions in PHP

The following methods are used to collect data from the Internet:

1st methods:

Function get_extension ($ file)

{

Substr (strrchr ($ file, '.'), 1 );

}

2nd methods:

Function get_extension ($ file)

{

Return substr ($ file, strrpos ($ file, '.') + 1 );

}

3rd methods:

Function get_extension ($ file)

{

Return end (explode ('.', $ file ));

}

4th methods:

Function get_extension ($ file)

{

$ Info = pathinfo ($ file );

Return $ info ['extension'];

}

5th methods:

Function get_extension ($ file)

{

Return pathinfo ($ file, PATHINFO_EXTENSION );

}

The above methods seem to work, especially the 1 and 2 methods, which have been used until I know that pathinfo has a second parameter. However, the first four methods have various problems. To obtain the file extension correctly, you must be able to handle the following three special cases.

No file extension

The path contains characters such as/home/test. d/test.txt.

The path contains characters. but the file has no extension. For example,/home/test. d/test

Obviously: 1 and 2 cannot handle the third case, and 3 cannot correctly handle the first three cases. 4. if the extension does not exist, a warning is issued. Only 5th methods are the most correct methods. Take a look at the pathinfo method. The official website is as follows:

$ File_path = pathinfo ('/www/htdocs/your_image.jpg ');

Echo "$ file_path ['dirname'] \ n ";

Echo "$ file_path ['basename'] \ n ";

Echo "$ file_path ['extension'] \ n ";

Echo "$ file_path ['filename'] \ n"; // only in PHP 5.2 +

It returns an array that contains up to four elements, but does not always have four elements. for example, if there is no extension, no extension element exists, therefore, warnings are detected in the 4th methods. However, phpinfo also supports the second parameter. You can pass a constant to specify a part of data to be returned:

PATHINFO_DIRNAME-Directory

PATHINFO_BASENAME-file name (including extension)

PATHINFO_EXTENSION-extension

PATHINFO_FILENAME-file name (excluding the extension, PHP> 5.2)

The values of these four constants are 1, 2, 4, and 8. at the beginning, I thought that multiple constants can be specified through the OR operation:

Pathinfo ($ file, PATHINFO_EXTENSION | PATHINFO_FILENAME );

Later, we found that this would not work. this would only return the smallest of several or arithmetic constants. That is, the constant whose minimum bit is 1 in the four flag bits.

Token collected from the Internet in the following ways: 1st methods: function get_extension ($ file) {substr (strrchr ($ file ,.), 1...

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.