1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
|
---
layout: default
title: Bundled Writer helpers
---
# Bundled insertion helpers
## Column consistency validator
The `League\Csv\ColumnConsistency` class validates the inserted record column count consistency.
This class constructor accepts a single argument `$column_count` which sets the column count value and validates each record length against the given value. If the value differs, a `CannotInsertRecord` exception will be thrown.
If `$column_count` equals `-1`, the object will lazy set the column count value according to the next inserted record and therefore will also validate it. On the next insert, if the given value differs, a `CannotInsertRecord` exception is triggered.
At any given time you can retrieve the column count value using the `ColumnConsistency::getColumnCount` method.
```php
use League\Csv\Writer;
use League\Csv\ColumnConsistency;
$validator = new ColumnConsistency();
$writer = Writer::createFromPath('/path/to/your/csv/file.csv');
$writer->addValidator($validator, 'column_consistency');
$validator->getColumnCount(); //returns -1
$writer->insertOne(["foo", "bar", "baz"]);
$validator->getColumnCount(); //returns 3
$writer->insertOne(["foo", "bar"]); //will trigger a CannotInsertRecord exception
```
<p class="message-info">The default column count is set to <code>-1</code>.</p>
## Charset formatter
[League\Csv\CharsetConverter](/9.0/converter/charset/) will help you encode your records depending on your settings.
|