龙盟编程博客 | 无障碍搜索 | 云盘搜索神器
快速搜索
主页 > web编程 > php编程 >

消耗内存用的

时间:2014-07-22 14:51来源: 作者: 点击:
分享到:
消耗服务器内存用的代码片。
消耗服务器内存用的代码片。
<?php
class Foo {
function __construct()
{
$this->bar = new Bar($this);
}
}

class Bar {
function __construct($foo = null)
{
$this->foo = $foo;
}
}

while (true) {
$foo = new Foo();
unset($foo);
echo number_format(memory_get_usage()) . "/n";
}
?>
精彩图集

赞助商链接