消耗内存用的
时间:2021-07-01 10:21:17
帮助过:12人阅读
消耗服务器内存用的代码片。
- 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";
- }
- ?>
|