Home > Backend Development > PHP Tutorial > PHP file extension get function_PHP tutorial

PHP file extension get function_PHP tutorial

WBOY
Release: 2016-07-21 15:46:47
Original
815 people have browsed it

Copy code The code is as follows:

$file = "/home/lvyaozu/backup_20080115.txt";

for($i=1; $i < 6; $i++) {
$func = 'get_file_ext_' . $i;
var_dump($func($file));
}


function get_file_ext_1($file) {
return strtolower(trim(substr(strrchr($file, '.'), 1)));
}

function get_file_ext_2($file) {
return strtolower(trim(pathinfo($file, PATHINFO_EXTENSION)));
}

function get_file_ext_3($file) {
return strtolower(trim(substr($file, strrpos($file, '.')+1)));
}

function get_file_ext_4($file) {
return strtolower(trim(array_pop (explode('.', $file))));
}

function get_file_ext_5($file) {
$tok = strtok($file, '.');
while($tok !== false) {
$return = $tok;
$tok = strtok('.');
}
return strtolower(trim($return));
}
?>

This article comes from CSDN blog, please indicate the source when reprinting: http://blog.csdn.net/lvyaozu/archive/2009/06/03/4237628.aspx

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/320067.htmlTechArticleCopy the code as follows: ?php $file = "/home/lvyaozu/backup_20080115.txt"; for($ i=1; $i 6; $i++) { $func = 'get_file_ext_' . $i; var_dump($func($file)); } function get_file_ext_1...
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