当前位置:首页 > PHP教程 > php文件操作 > 列表

php获取文件扩展名

发布:smiling 来源: PHP粉丝网  添加日期:2014-09-10 08:49:58 浏览: 评论:0 
  1. <?php 
  2.  
  3. /*** example usage ***/ 
  4. $filename = 'filename.blah.txt'
  5.  
  6. /*** get the path info ***/ 
  7. $info = pathinfo($filename); 
  8.  
  9. /*** show the extension ***/ 
  10. echo $info['extenstion']; 
  11. //开源代码phpfensi.com 
  12. ?> 
  13.  
  14. //第二种方法也基本相同以上,但使用字符串操作获得延长和争夺点(.)字符也。 
  15.  
  16.  
  17. <?php 
  18.  
  19. /*** example usage ***/ 
  20. $filename = 'filename.blah.txt'
  21.  
  22. echo getFileExtension($filename); 
  23.  
  24. /** 
  25. * 
  26. * @Get File extension from file name 
  27. * 
  28. * @param string $filename the name of the file 
  29. * 
  30. * @return string 
  31. * 
  32. **/ 
  33. function getFileExtension($filename){ 
  34.   return substr($filenamestrrpos($filename'.')); 
  35. ?>

Tags: php获取扩展名 php获取文件

分享到: