欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

php5析构函数用法示例

程序员文章站 2024-04-05 14:09:30
...
  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析构函数的用法。