Summary of how to get file extension in PHP

php中世界最好的语言
Release: 2023-03-25 22:00:01
Original
1557 people have browsed it

This time I will bring you a summary of how PHP obtains file extensions. What are the precautions for PHP to obtain file extensions? The following is a practical case, let's take a look.

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

I believe you have mastered it after reading the case in this article For more exciting methods, please pay attention to other related articles on the php Chinese website!

Recommended reading:

Detailed explanation of the steps for PHP to use file_get_contents to send http requests

PHP implements random elimination algorithm

The above is the detailed content of Summary of how to get file extension 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
Popular Tutorials
More>
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!