Heim >Backend-Entwicklung >PHP-Tutorial >消耗内存用的

消耗内存用的

WBOY
WBOYOriginal
2016-07-25 09:09:08816Durchsuche
消耗服务器内存用的代码片。
  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. ?>
复制代码


Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Vorheriger Artikel:分页实现 Nächster Artikel:PHP数据库操作基类(单例模式)