php获取文件后缀的9种方法

这篇文章主要为大家详细介绍了php获取文件后缀的9种方法,有一定的实用价值,感兴趣的小伙伴们可以参考一下,本文实例为大家分享了9种php获取文件后缀的方法,供大家参考,具体内容如下:

  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: liuft
  5. * Date: 2016/3/7
  6. * Time: 15:46
  7. */
  8. //第一种
  9. // function get_extension($file)
  10. // {
  11. // $file = explode('.', $file);
  12. // return end($file);
  13. // }
  14. //第二种
  15. // function get_extension($file)
  16. // {
  17. // return substr(strrchr($file, '.'), 1);
  18. // }
  19. //第三种
  20. // function get_extension($file){
  21. // return pathinfo($file)['extension'];
  22. // }
  23. //
  24. //第四种
  25. //function get_extension($file)
  26. //{
  27. // return substr($file, strrpos($file, '.') + 1);
  28. //}
  29. //第五种
  30. //function get_extension($file)
  31. //{
  32. // $file = preg_split('/\./', $file);
  33. // return end($file);
  34. //}
  35. //第六种
  36. // function get_extension($file){
  37. // $file = strrev($file);
  38. // return strrev(substr($file,0,strpos($file,'.')));
  39. // }
  40. //
  41. //第七种
  42. // function get_extension($file)
  43. // {
  44. // return pathinfo($file, PATHINFO_EXTENSION);
  45. // }
  46. //
  47. //第八种
  48. // function get_extension($file)
  49. // {
  50. // preg_match_all('/\.[a-zA-Z0-9]+/',$file,$data);
  51. // return !empty($data[0])?substr(end($data[0]),1):'';
  52. // }
  53. //第九种
  54. // function get_extension($file){
  55. // return str_replace('.','',strrchr($file,'.'));
  56. // }
  57. //暂时想这么多,以后想起来再补充
  58. $file = "http://10.31.63.8:8081/M00/00/09/Ch8_CFaaMLqAO87JAACePvS0ZRk.webp";
  59. $data = get_extension($file);
  60. var_export($data);