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

php析构函数用法分享

程序员文章站 2022-06-03 11:12:14
...
  1. class x
  2. {
  3. function __construct()
  4. {
  5. $this->file = fopen('path', 'a');
  6. }
  7. function __destruct()
  8. {
  9. fclose($this->file);
  10. }
  11. }
复制代码