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 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497
|
---
layout: default
title: Upgrading from 8.x to 9.x
redirect_from: /upgrading/9.0/
---
# Upgrading from 8.x to 9.x
`League\Csv 9.0` is a new major version that comes with backward compatibility breaks.
This guide will help you migrate from a 8.x version to 9.0. It will only explain backward compatibility breaks, it will not present the new features, ([read the documentation for that](/9.0/)).
## Installation
If you are using composer then you should update the require section of your `composer.json` file.
```bash
composer require league/csv:^9.0
```
This will edit (or create) your `composer.json` file.
## PHP version requirement
`League\Csv 9.0` requires a PHP version greater or equal to 7.0.0 (was previously 5.5.0).
<p class="message-warning">The library is not tested on <code>HHVM</code></p>
## The Writer class
### Stricter argument type
The `Writer::insertOne` and `Writer::insertAll` methods no longer accept a string as possible CSV records.
Before:
```php
use League\Csv\Writer;
$writer = Writer::createFromFileObject(new SplTempFileObject());
$str = 'john,doe,john.doe@example.com';
$writer->insertOne($str);
$writer->insertAll([$str]);
```
After:
```php
use League\Csv\Reader;
use League\Csv\Writer;
$writer = Writer::createFromFileObject(new SplTempFileObject());
$reader = Reader::createFromString('john,doe,john.doe@example.com');
$writer->insertOne($reader->fetchOne());
$writer->insertAll($reader);
```
### Reduced method chaining
The `Writer::insertOne` and `Writer::insertAll` methods are no longer chainable.
Before:
```php
use League\Csv\Writer;
$writer = Writer::createFromFileObject(new SplTempFileObject());
$record = ['john', 'doe', 'john.doe@example.com'];
$writer
->insertOne($record)
->insertAll([$record])
->insertOne($record)
;
```
After:
```php
use League\Csv\Writer;
$writer = Writer::createFromFileObject(new SplTempFileObject());
$record = ['john', 'doe', 'john.doe@example.com'];
$writer->insertOne($record);
$writer->insertAll([$record]);
$writer->insertOne($record);
```
### Removed methods
- `Writer::removeFormatter`
- `Writer::hasFormatter`
- `Writer::clearFormatters`
- `Writer::removeValidator`
- `Writer::hasValidator`
- `Writer::clearValidators`
Validators and Formatters can only be removed on object destruction.
You can no longer iterate over a `Writer` class, use the `Reader` class instead.
## The Reader class
### Removed methods
- `Reader::each`
- `Reader::fetch`
- `Reader::fetchAll`
- `Reader::fetchAssoc`
- `Reader::fetchDelimitersOccurrence`
- `Reader::fetchPairsWithoutDuplicates`
#### Reader::fetchAssoc
The `Reader::fetchAssoc` features are now accessible using the new `Reader::getRecords`.
You are required to specify the CSV header using `Reader::setHeaderOffset`.
Before:
```php
use League\Csv\Reader;
$reader = Reader::createFromPath('/path/to/file.csv', 'r');
foreach ($reader->fetchAssoc() as $records) {
//The CSV first row is implicitly used as the CSV header
//and as the index of each found record
//the CSV header offset is removed from iteration
}
```
After:
```php
use League\Csv\Reader;
$reader = Reader::createFromPath('/path/to/file.csv', 'r');
$reader->setHeaderOffset(0); //explicitly sets the CSV document header record
foreach ($reader->getRecords() as $records) {
//The CSV first row is used as the CSV header
//and as the index of each found record
//the CSV header offset is removed from iteration
}
```
or you can use the optional `$header` argument from the `Reader::getRecords` method.
Before:
```php
use League\Csv\Reader;
$reader = Reader::createFromPath('/path/to/file.csv', 'r');
$records = $reader->fetchAssoc(['firstname', 'lastname', 'email']);
```
After:
```php
use League\Csv\Reader;
$reader = Reader::createFromPath('/path/to/file.csv', 'r');
$records = $reader->getRecords(['firstname', 'lastname', 'email']);
```
Last but not least if you are using query filters then use the optional `$header` argument from the `Statement::process` method.
Before:
```php
use League\Csv\Reader;
$reader = Reader::createFromPath('/path/to/file.csv', 'r');
$records = $reader
->limit(5)
->offset(3)
->fetchAssoc(['firstname', 'lastname', 'email'])
;
```
After:
```php
use League\Csv\Reader;
$reader = Reader::createFromPath('/path/to/file.csv', 'r');
$stmt = (new Statement())
->limit(5)
->offset(3)
;
$records = $stmt->process($reader, ['firstname', 'lastname', 'email']);
```
#### Reader::fetchAll, Reader::fetch, Reader::each
These methods are removed because the `Reader` and the `ResultSet` implements the `IteratorAggregate` interface.
Before:
```php
use League\Csv\Reader;
$reader = Reader::createFromPath('/path/to/file.csv', 'r');
foreach ($reader->fetchAll() as $key => $value) {
// do something here
}
```
After:
```php
use League\Csv\Reader;
$reader = Reader::createFromPath('/path/to/file.csv', 'r');
foreach ($reader as $record) {
// do something here
}
```
Before:
```php
use League\Csv\Reader;
$reader = Reader::createFromPath('/path/to/file.csv', 'r');
$func = function (array $record) {
return array_map('strtoupper', $record);
};
$records = $reader
->setOffset(3)
->setLimit(2)
->fetch($func)
;
foreach ($records as $record) {
// do something here
}
```
After:
```php
use League\Csv\Reader;
use League\Csv\Statement;
$reader = Reader::createFromPath('/path/to/file.csv', 'r');
$stmt = (new Statement())
->offset(3)
->limit(2)
;
$records = $stmt->process($reader);
foreach ($records as $record) {
$res = array_map('strtoupper', $record);
// do something here
}
```
#### Reader::fetchPairsWithoutDuplicates
The `Reader::fetchPairsWithoutDuplicates` is removed as it is redundant with the `fetchPairs` method.
Before:
```php
use League\Csv\Reader;
$reader = Reader::createFromPath('/path/to/file.csv', 'r');
$pairs_without_duplicates = $reader
->setOffset(3)
->setLimit(2)
->fetchPairsWithoutDuplicates()
;
foreach ($pairs_without_duplicates as $key => $value) {
// do something here
}
```
After:
```php
use League\Csv\Reader;
use League\Csv\Statement;
$reader = Reader::createFromPath('/path/to/file.csv', 'r');
$stmt = (new Statement())
->offset(3)
->limit(2)
;
$records = $stmt->process($reader);
$pairs_without_duplicates = iterator_to_array($records->fetchPairs(), true);
foreach ($pairs_without_duplicates as $record) {
// do something here
}
```
#### Reader::fetchDelimitersOccurrence
Use the `League\Csv\delimiter_detect` function instead with a `Reader` object.
Before:
```php
use League\Csv\Reader;
$reader = Reader::createFromPath('/path/to/file.csv', 'r');
$stats = $reader->fetchDelimitersOccurrence([',', ';', "\t"], 10);
```
After:
```php
use League\Csv\Reader;
use function League\Csv\delimiter_detect;
$reader = Reader::createFromPath('/path/to/file.csv', 'r');
$stats = delimiter_detect($reader, [',', ';', "\t"], 10);
```
### Optional callable arguments are removed
The following methods no longer accept an optional callable as argument because they return an iterable object.
- `Reader::fetchColumn`
- `Reader::fetchPairs`
Before:
```php
use League\Csv\Reader;
$reader = Reader::createFromPath('/path/to/file.csv', 'r');
$records = $reader->fetchColumn(0, function ($value) {
return strtoupper($value);
});
```
After:
```php
use League\Csv\Reader;
$reader = Reader::createFromPath('/path/to/file.csv', 'r');
foreach ($records->fetchColumn(0) as $value) {
$value = strtoupper($value);
}
```
## Stream Filtering
### Stream support detection
To detect if PHP stream filters are supported you need to call `AbstractCsv::supportsStreamFilter`
Before:
```php
use League\Csv\Writer;
$csv = Writer::createFromPath('/path/to/file.csv');
$csv->isActiveStreamFilter(); //true
```
After:
```php
use League\Csv\Writer;
$csv = Writer::createFromPath('/path/to/file.csv');
$csv->supportsStreamFilter(); //true
```
### Stream mode
The filtering mode is fixed and can not be changed:
- a `Writer` class will only accept stream filters in writing mode only
- a `Reader` class will only accept stream filters in reading mode only
Therefore `AbstractCsv::setStreamFilterMode` is removed.
To add a stream filter you will only need the `AbstractCsv::addStreamFilter` method.
Before:
```php
use League\Csv\Writer;
$csv = Writer::createFromPath('/path/to/file.csv');
$csv->appendStreamFilter('string.toupper');
$csv->prependStreamFilter('string.rot13');
```
After:
```php
use League\Csv\Writer;
$csv = Writer::createFromPath('/path/to/file.csv');
$csv->addStreamFilter('string.rot13');
$csv->addStreamFilter('string.toupper');
//the insertion order has changed
```
### stream filter removal
PHP Stream filters will only be removed on CSV object destruction.
Before:
```php
use League\Csv\Writer;
$csv = Writer::createFromPath('/path/to/file.csv');
$csv->appendStreamFilter('string.toupper');
$csv->prependStreamFilter('string.rot13');
$csv->removeStreamFilter('string.rot13');
$csv->clearStreamFilters();
```
After:
```php
use League\Csv\Writer;
$csv = Writer::createFromPath('/path/to/file.csv');
$csv->addStreamFilter('string.rot13');
$csv->addStreamFilter('string.toupper');
$csv = null;
```
## Conversion methods
All conversion methods are no longer attached to the `Reader` or the `Writer` classes, you need a [Converter](/9.0/reader/converter/) object to convert your CSV. The following methods are removed:
- `Writer::jsonSerialize`
- `AbstractCsv::toHTML`
- `AbstractCsv::toXML`
And you can no longer convert a `Writer` class.
Before:
```php
use League\Csv\Writer;
$csv = Writer::createFromPath('/path/to/file.csv');
$dom = $csv->toXML(); //$dom is a DOMDocument
```
After:
```php
use League\Csv\XMLConverter;
use League\Csv\Reader;
$csv = Reader::createFromPath('/path/to/file.csv', 'r');
$dom = (new XMLConverter())->convert($csv); //$dom is a DOMDocument
```
## Miscellaneous
### Switching between connections
- `AbstractCsv::newReader`
- `AbstractCsv::newWriter`
You can no longer switch between connection. You are required to explicitly load a new `Reader` and/or `Writer` object.
### Columns consistency Validator
- `League\Csv\Plugin\ColumnConsistencyValidator` is renamed `League\Csv\ColumnConsistency` and is now an immutable object.
Before:
```php
use League\Csv\Plugin\ColumnConsistencyValidator;
use League\Csv\Writer;
$validator = new ColumnConsistencyValidator();
$validator->autodetectColumnCount();
$csv = Writer::createFromPath('/path/to/file.csv');
$csv->addValidator($validator, 'columns_consistency');
```
After:
```php
use League\Csv\ColumnConsistency;
use League\Csv\Writer;
$csv = Writer::createFromPath('/path/to/file.csv');
$csv->addValidator(new ColumnConsistency(), 'columns_consistency');
```
|