コード例 #1
0
ファイル: Writer.php プロジェクト: schpill/standalone
 /**
  *  {@inheritdoc}
  */
 public function __destruct()
 {
     $this->csv = null;
     parent::__destruct();
 }
コード例 #2
0
ファイル: CsvWriter.php プロジェクト: csanquer/colibri-csv
 /**
  * open a csv file to write
  *
  * @param  string|resource $file filename or stream resource, default = null
  * @return AbstractCsv
  */
 public function open($file = null)
 {
     parent::open($file);
     $this->writeBom();
     return $this;
 }