VB.net 2010 视频教程 VB.net 2010 视频教程 python基础视频教程
SQL Server 2008 视频教程 c#入门经典教程 Visual Basic从门到精通视频教程
当前位置:
首页 > PHP >
  • php获取文件扩展名

  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. ?>
  36.  

出处:http://www.phpfensi.com/php/20140910/5185.html


相关教程