VB.net 2010 视频教程 VB.net 2010 视频教程 python基础视频教程
SQL Server 2008 视频教程 c#入门经典教程 Visual Basic从门到精通视频教程
当前位置:
首页 > PHP >
  • php获取文件大小并转换gb,mb,kb代码

这是一款利用php程序来获取文件的大小并且把文件根据文件的大小显示gb,mb,kb代码的代码非常智能的代码,代码如下:

  1. function sizecount($filesize) { 
  2.  if($filesize >= 1073741824) { 
  3.   $filesize = round($filesize / 1073741824 * 100) / 100 . ' gb'
  4.  } elseif($filesize >= 1048576) { 
  5.   $filesize = round($filesize / 1048576 * 100) / 100 . ' mb'
  6.  } elseif($filesize >= 1024) { 
  7.   $filesize = round($filesize / 1024 * 100) / 100 . ' kb'
  8.  } else {//开源代码phpfensi.com 
  9.   $filesize = $filesize . ' bytes'
  10.  } 
  11.  return $filesize
  12.  
  13. //应用方法 
  14. $path='./phpfensi.com/logo.gif'
  15. echo sizecount(filesize($path)); 

出处:http://www.phpfensi.com/php/20140815/4269.html


相关教程