コードをコピー コードは次のとおりです:
$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 strto lower(substr(strrchr($file, '.'), 1))); }
function get_file_ext_2($file) {
return strto lower(trim(pathinfo($file, PATHINFO_EXTENSION)));
}
function get_file_ext_3($file) {
return strto lower(trim(substr($file, strrpos($file, '.') 1)));
}
function get_file_ext_4($file) {
return strto lower(trim (array_pop(explode('.', $file))));
}
function get_file_ext_5($file) {
$tok = strtok($file, '.'); 🎜>while ($tok !== false) {
$return = $tok;
$tok = strtok('.');
return strto lower(trim($return)) ;
}
?>
この記事は CSDN ブログからのものです。転載する場合は出典を明記してください: http://blog.csdn.net/lvyaozu/archive/2009/06/03 /4237628.aspx