当前位置:Gxlcms > PHP教程 > 消耗内存用的

消耗内存用的

时间:2021-07-01 10:21:17 帮助过:12人阅读

消耗服务器内存用的代码片。
  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. ?>

人气教程排行