我有export_csv()將文件導出為 .csv 格式的功能。我想更改 .dat 或 .txt 格式而不是 .csv當前代碼:public function export_csv() { if( ! $this->path) { throw new exception('unable to create xls: missing path'); } /** output conetnts to csv **/ ob_start(); $df = fopen($this->path.'.csv', 'w'); foreach ($this->data as $row) { fputcsv($df, $row); } fclose($df); return $this->path;}我試過下面的代碼。但是 .dat 文件是空白的。文件大小 0public function export_dat() { if( ! $this->path) { throw new exception('unable to create xls: missing path'); } /** output contents to dat **/ ob_start(); $df = fopen($this->path.'.dat', 'w'); foreach ($this->data as $row) { fwrite($df, $row); } fclose($df); return $this->path;}提前感謝您的幫助。
- 1 回答
- 0 關注
- 126 瀏覽
添加回答
舉報
0/150
提交
取消