如何获知PHP程序占用多少内存(memory_get_usage)
2015-01-24信息快讯网
想要知道编写的 PHP 脚本需要占用多少内存么?很简单,直接使用 PHP 查看当前分配给 PHP 脚本的内存的函数 memory_get_usage() 就可以了
下面是使用示例:<?php echo memory_get_usage(), '<br />'; // 313864 $tmp = str_repeat('http://www.nowamagic.net/', 4000); echo memory_get_usage(), '<br />'; // 406048 unset($tmp); echo memory_get_usage(); // 313952 ?>
上面的程序后面的注释代表了它们的输出(单位为 byte(s)),也就是当时 PHP 脚本使用的内存(不含 memory_get_usage() 函数本身占用的内存)。
由上面的例子可以看出,要想减少内存的占用,可以使用 PHP unset() 函数把不再需要使用的变量删除。类似的还有:PHP mysql_free_result() 函数,可以清空不再需要的查询数据库得到的结果集,这样也能得到更多可用内存。
PHP memory_get_usage() 函数还可以有个参数,$real_usage,其值为布尔值。默认为 FALSE,表示得到的内存使用量不包括该函数(PHP 内存管理器)占用的内存;当设置为 TRUE 时,得到的内存为不包括该函数(PHP 内存管理器)占用的内存。
所以在实际编程中,可以用 memory_get_usage() 函数比较各个方法占用内存的高低,来选择使用哪种占用内存小的方法。
贴个使用函数:
if (!function_exists('memory_get_usage')) { /** +---------------------------------------------------------- * 取得内存使用情况 +---------------------------------------------------------- * @return integer +---------------------------------------------------------- */ function memory_get_usage() { $pid = getmypid(); if (IS_WIN) { exec('tasklist /FI "PID eq ' . $pid . '" /FO LIST', $output); return preg_replace('/[^0-9]/', '', $output[5]) * 1024; } else { exec("ps -eo%mem,rss,pid | grep $pid", $output); $output = explode(" ", $output[0]); return $output[1] * 1024; } } }
再来个函数使用例子:
<?php //memory_get_usage(); $m1 = memory_get_usage(); echo '<br /> m1:',$m1;//58096 $a = 'hello'; $b = str_repeat($a,1000); $m2 = memory_get_usage(); echo '<br /> m2:',$m2;//63424 unset($b); $m3 = memory_get_usage(); echo '<br /> m3:',$m3;//58456 ?>
php 去除html标记--strip_tags与htmlspecialchars的区别详解
深入file_get_contents与curl函数的详解
执行、获取远程代码返回:file_get_contents 超时处理的问题详解
解析PHP中的file_get_contents获取远程页面乱码的问题
深入file_get_contents函数抓取内容失败的原因分析
关于PHP内存溢出问题的解决方法
解析func_num_args与func_get_args函数的使用
解析php常用image图像函数集
基于PHP magic_quotes_gpc的使用方法详解
深入解析PHP内存管理之谁动了我的内存
深入PHP magic quotes的详解
深入解析PHP垃圾回收机制对内存泄露的处理
深入PHP内存相关的功能特性详解
基于magic_quotes_gpc与magic_quotes_runtime的区别与使用介绍
php页面消耗内存过大的处理办法
Thinkphp模板中使用自定义函数的方法
PHP管理内存函数 memory_get_usage()使用介绍
详解php的魔术方法__get()和__set()使用介绍
PHP setTime 设置当前时间的代码
PhpMyAdmin出现export.php Missing parameter: what /export_type错误解决方法
php调用方法mssql_fetch_row、mssql_fetch_array、mssql_fetch_assoc和mssql_fetch_objcect读取数据的区别
PHP imagecreatefrombmp 从BMP文件或URL新建一图像
PHP中使用unset销毁变量并内存释放问题
php安全之直接用$获取值而不$_GET 字符转义
PHP fgetcsv 定义和用法(附windows与linux下兼容问题)
PHP CURL模拟登录新浪微博抓取页面内容 基于EaglePHP框架开发
Trying to clone an uncloneable object of class Imagic的解决方法
Uncaught exception com_exception with message Failed to create COM object
采用PHP函数memory_get_usage获取PHP内存清耗量的方法
PHP中文件缓存转内存缓存的方法
深入探讨PHP中的内存管理问题