php5析构函数用法示例

WBOY
发布: 2016-07-25 08:53:54
原创
755 人浏览过
  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析构函数的用法。



来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责声明 Sitemap
PHP中文网:公益在线PHP培训,帮助PHP学习者快速成长!