84669 人が学習中
152542 人が学習中
20005 人が学習中
5487 人が学習中
7821 人が学習中
359900 人が学習中
3350 人が学習中
180660 人が学習中
48569 人が学習中
18603 人が学習中
40936 人が学習中
1549 人が学習中
1183 人が学習中
32909 人が学習中
╰つ ゛思 绪 万 千 , 不 如 努 力 向 前 .ヽ
PHP でファイル拡張子を取得しますか? -PHP中国語WebサイトQ&A-PHPでファイル拡張子を取得しますか? -PHP中国語サイトQ&A
ぜひ見て学んでください。
第1种方法:function get_extension($file){ substr(strrchr($file, '.'), 1);}第2种方法:function get_extension($file){ return substr($file, strrpos($file, '.')+1);}第3种方法:function get_extension($file){ return end(explode('.', $file));}第4种方法:function get_extension($file){ $info = pathinfo($file); return $info['extension'];}第5种方法:function get_extension($file){ return pathinfo($file, PATHINFO_EXTENSION);}
PHP でファイル拡張子を取得しますか? -PHP中国語WebサイトQ&A-PHPでファイル拡張子を取得しますか? -PHP中国語サイトQ&A
ぜひ見て学んでください。
第1种方法:
function get_extension($file){
substr(strrchr($file, '.'), 1);
}
第2种方法:
function get_extension($file){
return substr($file, strrpos($file, '.')+1);
}
第3种方法:
function get_extension($file){
return end(explode('.', $file));
}
第4种方法:
function get_extension($file){
$info = pathinfo($file);
return $info['extension'];
}
第5种方法:
function get_extension($file){
return pathinfo($file, PATHINFO_EXTENSION);
}