コード例 #1
0
ファイル: StringReader.php プロジェクト: bluesnowman/Chimera
 /**
  * This destructor ensures that any resources are properly disposed.
  *
  * @access public
  */
 public function __destruct()
 {
     parent::__destruct();
     unset($this->buffer);
     unset($this->length);
     unset($this->position);
 }
コード例 #2
0
ファイル: FileReader.php プロジェクト: bluesnowman/Chimera
 /**
  * This destructor ensures that any resources are properly disposed.
  *
  * @access public
  */
 public function __destruct()
 {
     parent::__destruct();
     unset($this->file);
     unset($this->handle);
 }