当前位置:Gxlcms > PHP教程 > php析构函数用法分享

php析构函数用法分享

时间:2021-07-01 10:21:17 帮助过:25人阅读

  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. }

人气教程排行