diff --git a/CHANGELOG.md b/CHANGELOG.md index 44715070..589326f8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,7 @@ All Notable changes to `Csv` will be documented in this file -## Next - TBD +## 9.4.0 - 2019-10-02 ### Added diff --git a/docs/9.0/connections/bom.md b/docs/9.0/connections/bom.md index 6a963f76..84c06250 100644 --- a/docs/9.0/connections/bom.md +++ b/docs/9.0/connections/bom.md @@ -80,6 +80,8 @@ $bom = $csv->getOutputBOM(); //returns "\xEF\xBB\xBF"
+If your document contains a BOM sequence by the following methods control its presence when processing it. + ~~~php AbstractCsv::skipInputBOM(): self; AbstractCsv::includeInputBOM(): self; @@ -90,7 +92,7 @@ AbstractCsv::isInputBOMIncluded(): bool; - `includeInputBOM`: preserves the input BOM from your CSV document while accessing its content. - `isInputBOMIncluded`: tells whether skipping or including the input BOM will be done. - + If your document does not contains any BOM sequence you can speed up the CSV iterator by preserving its presence which means that no operation to detect and remove it if present will take place.