当前位置:Gxlcms > PHP教程 > 容量格式化函数

容量格式化函数

时间:2021-07-01 10:21:17 帮助过:30人阅读

很简单的一段, 没啥好说的..




  1. /**
  2. * 容量格式化
  3. *
  4. * @param Int $filesize
  5. * @return Srting
  6. */
  7. function sizecount ($filesize)
  8. {
  9. if ($filesize >= 1073741824) $filesize = round($filesize / 1073741824 * 100) / 100 . ' GB';
  10. elseif ($filesize >= 1048576) $filesize = round($filesize / 1048576 * 100) / 100 . ' MB';
  11. elseif ($filesize >= 1024) $filesize = round($filesize / 1024 * 100) / 100 . ' KB';
  12. else $filesize = $filesize . ' Bytes';
  13. return $filesize;
  14. }

人气教程排行