現在のソースコード
// viewは使わない $this->viewBuilder()->autoLayout(false); $this->autoRender = false; // 保存場所とファイルの設定 $file = 'contents_' . date('YmdHis') . '.csv'; // response header指定 $this->response->type('csv'); $this->response->download($file); // データ取得 $article = $this->Article->find() ->where($conditions); // データ整形 $data[] = $article['〇〇']; // CSVダウンロード $this->response->body($data);
困っていること
この方法だとCSVファイルの中身は何も出力されない
配列をCSVファイルに出力するためにはどうすればよい
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。