码迷,mamicode.com
首页 > 其他好文 > 详细

公用辅助方法

时间:2020-09-17 20:25:32      阅读:38      评论:0      收藏:0      [点我收藏+]

标签:sum   pow   sage   round   方法   public   its   count   bytes   

/**
* Comment:获取当前php占用的内存大小
*/
public static function showMemory($precision = 2) {
$bytes = memory_get_peak_usage();
$units = array("b", "kb", "mb", "gb", "tb");

$bytes = max($bytes, 0);
$pow = floor(($bytes ? log($bytes) : 0) / log(1024));
$pow = min($pow, count($units) - 1);

$bytes /= (1 << (10 * $pow));

$consume = round($bytes, $precision) . " " . $units[$pow];
return $consume;
}

公用辅助方法

标签:sum   pow   sage   round   方法   public   its   count   bytes   

原文地址:https://www.cnblogs.com/cyq632694540/p/13644317.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!