Home  >  Article  >  Backend Development  >  php5 destructor usage example

php5 destructor usage example

WBOY
WBOYOriginal
2016-07-25 08:53:54748browse
  1. /*
  2. * to change the template for this generated file go to
  3. * window - preferences - phpeclipse - php - code templates
  4. */
  5. class student{
  6. //属性
  7. private $no;
  8. private $name;
  9. private $gender;
  10. private $age;
  11. private static $count=0;
  12. function __construct($pname)
  13. {
  14. $this->name = $pname;
  15. self::$count++;
  16. }
  17. function __destruct()
  18. {
  19. self::$count--;
  20. }
  21. static function get_count()
  22. {
  23. return self::$count;
  24. }
  25. }
  26. $s1=new student("tom");
  27. print(student::get_count());
  28. $s2=new student("jerry");
  29. print(student::get_count());
  30. $s1=null;
  31. print(student::get_count());
  32. $s2=null;
  33. print(student::get_count());
  34. ?>
复制代码

以上实例展示了php5析构函数的用法。



Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn