获取有关内存使用情况的信息。
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了获取有关内存使用情况的信息。相关的知识,希望对你有一定的参考价值。
In order to optimize your scripts, you may definitely want to know how many amount of RAM they use on your server. This snippet will check memory and then print initial, final and peak usages.
/* prints Initial: 361400 bytes */ // let's use up some memory for ($i = 0; $i < 100000; $i++) { } // let's remove half of the array for ($i = 0; $i < 100000; $i++) { } /* prints Final: 885912 bytes */ /* prints Peak: 13687072 bytes */
以上是关于获取有关内存使用情况的信息。的主要内容,如果未能解决你的问题,请参考以下文章
vbscript 各种自定义代码片段 - 有关详细信息,请参阅注释