Home > 类库下载 > PHP类库 > body text

There are many ways to get file extensions in php.

高洛峰
Release: 2016-10-14 10:42:34
Original
1148 people have browsed it

获取文件扩展名的方法有多种,但不局限于所列的几种方法,更多的自己去发掘
 
<?php 
//php获取文件扩展名的方法一: 
function extend_1($file_name) 
{ 
$retval=""; 
$pt=strrpos($file_name, "."); 
if ($pt) $retval=substr($file_name, $pt+1, strlen($file_name) - $pt); 
return ($retval); 
} 
 
//php获取文件扩展名的方法二 
function extend_2($file_name) 
{ 
$extend = pathinfo($file_name); 
$extend = strtolower($extend["extension"]); 
return $extend; 
} 
 
//php获取文件扩展名的方法三 
function extend_3($file_name) 
{ 
$extend =explode("." , $file_name); 
$va=count($extend)-1;
return $extend[$va]; 
} 
?>
Copy after login


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 Recommendations
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!