# cakephp-csvview **Repository Path**: mirrors_CakeDC/cakephp-csvview ## Basic Information - **Project Name**: cakephp-csvview - **Description**: CakePHP3: A view class for generating CSV - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-24 - **Last Updated**: 2026-05-09 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README [![Build Status](https://img.shields.io/travis/FriendsOfCake/cakephp-csvview/master.svg?style=flat-square)](https://travis-ci.org/FriendsOfCake/cakephp-csvview) [![Coverage Status](https://img.shields.io/codecov/c/github/FriendsOfCake/cakephp-csvview.svg?style=flat-square)](https://codecov.io/gh/FriendsOfCake/cakephp-csvview) [![Total Downloads](https://img.shields.io/packagist/dt/friendsofcake/cakephp-csvview.svg?style=flat-square)](https://packagist.org/packages/friendsofcake/cakephp-csvview) [![Latest Stable Version](https://img.shields.io/packagist/v/friendsofcake/cakephp-csvview.svg?style=flat-square)](https://packagist.org/packages/friendsofcake/cakephp-csvview) [![Software License](https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat-square)](LICENSE.txt) # CsvView Plugin Quickly enable CSV output of your model data. ## Background I needed to quickly export CSVs of stuff in the database. Using a view class to iterate manually would be a chore to replicate for each export method, so I figured it would be much easier to do this with a custom view class, like JsonView or XmlView. ## Requirements * CakePHP 3.5.5 or greater * PHP 5.6 or greater ## Installation _[Using [Composer](http://getcomposer.org/)]_ ``` composer require friendsofcake/cakephp-csvview ``` ### Enable plugin Load the plugin by running command bin/cake plugin load CsvView ## Usage To export a flat array as a CSV, one could write the following code: ```php public function export() { $data = [ ['a', 'b', 'c'], [1, 2, 3], ['you', 'and', 'me'], ]; $_serialize = 'data'; $this->viewBuilder()->setClassName('CsvView.Csv'); $this->set(compact('data', '_serialize')); } ``` All variables that are to be included in the csv must be specified in the `$_serialize` view variable, exactly how JsonView or XmlView work. It is possible to have multiple variables in the csv output: ```php public function export() { $data = [['a', 'b', 'c']]; $data_two = [[1, 2, 3]]; $data_three = [['you', 'and', 'me']]; $_serialize = ['data', 'data_two', 'data_three']; $this->viewBuilder()->setClassName('CsvView.Csv'); $this->set(compact('data', 'data_two', 'data_three', '_serialize')); } ``` If you want headers or footers in your CSV output, you can specify either a `$_header` or `$_footer` view variable. Both are completely optional: ```php public function export() { $data = [ ['a', 'b', 'c'], [1, 2, 3], ['you', 'and', 'me'], ]; $_serialize = 'data'; $_header = ['Column 1', 'Column 2', 'Column 3']; $_footer = ['Totals', '400', '$3000']; $this->viewBuilder()->setClassName('CsvView.Csv'); $this->set(compact('data', '_serialize', '_header', '_footer')); } ``` You can also specify the delimiter, end of line, newline, escape characters and byte order mark (BOM) sequence using `$_delimiter`, `$_eol`, `$_newline`, `$_enclosure` and `$_bom` respectively: ```php public function export() { $data = [ ['a', 'b', 'c'], [1, 2, 3], ['you', 'and', 'me'], ]; $_serialize = 'data'; $_delimiter = chr(9); //tab $_enclosure = '"'; $_newline = '\r\n'; $_eol = '~'; $_bom = true; $this->viewBuilder()->setClassName('CsvView.Csv'); $this->set(compact('data', '_serialize', '_delimiter', '_enclosure', '_newline', '_eol', '_bom')); } ``` The defaults for these variables are: * `_delimiter`: `,` * `_enclosure`: `"` * `_newline`: `\n` * `_eol`: `\n` * `_bom`: false * `_setSeparator`: false The `_eol` variable is the one used to generate newlines in the output. `_newline`, however, is the character that should replace the newline characters in the actual data. It is recommended to use the string representation of the newline character to avoid rendering invalid output. Some reader software incorrectly renders UTF-8 encoded files which do not contain byte order mark (BOM) byte sequence. The `_bom` variable is the one used to add byte order mark (BOM) byte sequence beginning of the generated CSV output stream. See [`Wikipedia article about byte order mark`](http://en.wikipedia.org/wiki/Byte_order_mark) for more information. The `_setSeparator` flag can be used to set the separator explicitly in the first line of the CSV. Some readers need this in order to display the CSV correctly. If you have complex model data, you can use the `$_extract` view variable to specify the individual [`Hash::extract()`-compatible](http://book.cakephp.org/3.0/en/core-libraries/hash.html) paths or a callable for each record: ```php public function export() { $posts = $this->Posts->find(); $_serialize = 'posts'; $_header = ['Post ID', 'Title', 'Created']; $_extract = [ 'id', function (\App\Model\Entity\Post $row) { return $row->title; }, 'created' ]; $this->viewBuilder()->setClassName('CsvView.Csv'); $this->set(compact('posts', '_serialize', '_header', '_extract')); } ``` If your model data contains some null values or missing keys, you can use the `$_null` variable, just like you'd use `$_delimiter`, `$_eol`, and `$_enclosure`, to set how null values should be displayed in the CSV. `$_null` defaults to `''`. You can use `Router::extensions()` and the `RequestHandlerComponent` to automatically have the CsvView class switched in as follows: ```php // In your routes.php file: Router::extensions('csv'); // In your controller's initialize() method: $this->loadComponent('RequestHandler', [ 'viewClassMap' => ['csv' => 'CsvView.Csv' ]]); // In your controller public function export() { $posts = $this->Posts->find(); $this->set(compact('posts')); if ($this->getRequest()->getParam('_ext') === 'csv') { $_serialize = 'posts'; $_header = array('Post ID', 'Title', 'Created'); $_extract = array('id', 'title', 'created'); $this->set(compact('_serialize', '_header', '_extract')); } } ``` Access /posts/export.csv to get the data as csv and /posts/export to get normal page as usually. For really complex CSVs, you can also simply use your own view files. To do so, either leave `$_serialize` unspecified or set it to null. The view files will be located in the `csv` subdirectory of your current controller: ```php // View used will be in src/Template/Posts/csv/export.ctp public function export() { $posts = $this->Posts->find(); $_serialize = null; $this->viewBuilder()->setClassName('CsvView.Csv'); $this->set(compact('posts', '_serialize')); } ``` #### Setting a different encoding to the file if you need to have a different encoding in you csv file you have to set the encoding of your data you are passing to the view and also set the encoding you want for the csv file. This can be done by using `_dataEncoding` and `_csvEncoding`: The defaults are: * `_dataEncoding`: `UTF-8` * `_csvEncoding`: `UTF-8` ** Only if those two variable are different your data will be converted to another encoding. CsvView uses the `iconv` extension by default to encode your data. You can change the php extension used to encode your data by setting the `_extension` option: ```php $this->set('_extension', 'mbstring'); ``` The currently supported encoding extensions are as follows: - `iconv` - `mbstring` #### Setting the downloaded file name By default, the downloaded file will be named after the last segment of the URL used to generate it. Eg: `example.com/my-controller/my-action` would download `my-action.csv`, while `example.com/my-controller/my-action/first-param` would download `first-param.csv`. > In IE you are required to set the filename, otherwise it will download as a text file. To set a custom file name, use the [`Response::withDownload`](https://api.cakephp.org/3.6/class-Cake.Http.Response.html#_withDownload). The following snippet can be used to change the downloaded file from `export.csv` to `my-file.csv`: ```php public function export() { $data = [ ['a', 'b', 'c'], [1, 2, 3], ['you', 'and', 'me'], ]; $_serialize = 'data'; $this->setResponse($this->getResponse()->withDownload('my-file.csv')); $this->viewBuilder()->setClassName('CsvView.Csv'); $this->set(compact('data', '_serialize')); } ``` #### Using a specific View Builder In some cases, it is better not to use the current controller's View Builder `$this->viewBuilder()` as any call to `$this->render()` will compromise any subsequent rendering. For example, in the course of your current controller's action, if you need to render some data as CSV in order to simply save it into a file on the server. Do not forget to add to your controller: ```php use Cake\View\ViewBuilder; ``` So you can create a specific View Builder: ```php // Your data array $data = []; // Params $_serialize = 'data'; $_delimiter = ','; $_enclosure = '"'; $_newline = '\r\n'; // Create the builder $builder = new ViewBuilder; $builder ->setLayout(false) ->setClassName('CsvView.Csv'); // Then the view $view = $builder->build($data); $view->set(compact('data', '_serialize', '_delimiter', '_enclosure', '_newline')); // And Save the file $file = new File('/full/path/to/file.csv', true, 0644); $file->write($view->render()); ``` ## License [The MIT License (MIT)](LICENSE.txt)