Common ways to get file extensions in PHP

不言
Release: 2023-03-24 22:40:02
Original
1438 people have browsed it

This article mainly introduces the common methods of obtaining file extensions in PHP. It summarizes and analyzes five common operating techniques of obtaining file extensions in PHP in the form of examples. Friends in need can refer to the examples in this article.

Summarizes the common methods of obtaining file extensions in PHP. Share it with everyone for your reference, the details are as follows:

This is a written test question I encountered when applying for an internship:

Use more than five methods to obtain the extension of a file.

Requirements: dir/upload.image.jpg, find .jpg or jpg,

Must use PHP's own processing function for processing, the method cannot be obviously repeated, and can be encapsulated into a function, For example,get_ext1($file_name),get_ext2($file_name)

The following are five methods I summarized by referring to online information. They are all relatively simple and do not say much. Say, go directly to the code:

Method 1:

function getExt1($filename) { $arr = explode('.',$filename); return array_pop($arr);; }
Copy after login

Method 2:

function getExt2($filename) { $ext = strrchr($filename,'.'); return $ext; }
Copy after login

Method 3:

function getExt3($filename) { $pos = strrpos($filename, '.'); $ext = substr($filename, $pos); return $ext; }
Copy after login

Method 4:

function getExt4($filename) { $arr = pathinfo($filename); $ext = $arr['extension']; return $ext; }
Copy after login

Method 5:

function getExt5($filename) { $str = strrev($filename); return strrev(strchr($str,'.',true)); }
Copy after login

Related recommendations:

7 ways to get file extensions in PHP


The above is the detailed content of Common ways to get file extensions in PHP. For more information, please follow other related articles on the PHP Chinese website!

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 Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!