Berikut ini adalah contoh code yang digunakan untuk mendapatkan ekstensi sebuah file dengan php:
<?php
$filename = 'mypic.part1.zip';
// 1. The "explode/end" approach
$ext = end(explode('.', $filename));
// 2. The "strrchr" approach
$ext = substr(strrchr($filename, '.'), 1);
// 3. The "strrpos" approach
$ext = substr($filename, strrpos($filename, '.') + 1);
// 4. The "preg_replace" approach
$ext = preg_replace('/^.*\.([^.]+)$/D', '$1', $filename);
// 5. The "never use this" approach
// From: http://php.about.com/od/finishedphp1/qt/file_ext_PHP.htm
$exts = split("[/\\.]", $filename);
$n = count($exts)-1;
$ext = $exts[$n];
echo $ext;
?>
hasil dari running program diatas adalah
zip
Terima kasih
0 comments:
Posting Komentar