首页  >  文章  >  后端开发  >  消耗内存用的

消耗内存用的

WBOY
WBOY原创
2016-07-25 09:09:08782浏览
消耗服务器内存用的代码片。
  1. class Foo {
  2. function __construct()
  3. {
  4. $this->bar = new Bar($this);
  5. }
  6. }
  7. class Bar {
  8. function __construct($foo = null)
  9. {
  10. $this->foo = $foo;
  11. }
  12. }
  13. while (true) {
  14. $foo = new Foo();
  15. unset($foo);
  16. echo number_format(memory_get_usage()) . "/n";
  17. }
  18. ?>
复制代码


声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn