首頁  >  文章  >  後端開發  >  php 檔案副檔名取得方法總計

php 檔案副檔名取得方法總計

WBOY
WBOY原創
2016-07-25 09:00:461362瀏覽
  1. //取文件的扩展名

  2. //by http://bbs.it-home.org
  3. $file = "/home/jbxue/file_20130322.txt";

  4. for($i=1; $i < 6; $i++) {

  5. $func = 'get_file_ext_' . $i;
  6. var_dump($func($file));
  7. }

  8. function get_file_ext_1($file) {

  9. return strtolower(trim(substr(strrchr($file, '.'), 1)));
  10. }

  11. function get_file_ext_2($file) {

  12. return strtolower(trim(pathinfo($file, PATHINFO_EXTENSION)));
  13. }

  14. function get_file_ext_3($file) {

  15. return strtolower(trim(substr($file, strrpos($file, '.')+1)));
  16. }

  17. function get_file_ext_4($file) {

  18. return strtolower(trim(array_pop(explode('.', $file))));
  19. }

  20. function get_file_ext_5($file) {

  21. $tok = strtok($file, '.');
  22. while($tok !== false) {
  23. $return = $tok;
  24. $tok = strtok('.');
  25. }
  26. return strtolower(trim($return));
  27. }
  28. ?>

复制代码

附:php 文件扩展名小知识 文件扩展名是操作系统用来标志文件格式的一种机制。 通常来说,一个扩展名是跟在主文件名后面的,由一个分隔符分隔。 在一个像“readme.txt”的文件名中,readme是主文件名,txt为扩展名,表示这个文件被认为是一个纯文本文件。



陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn