@@ -833,27 +833,27 @@ which defines the configuration options for the CsvEncoder an associative array:
833833
834834These are the options available:
835835
836- ======================= ==================================================== ==========================
837- Option Description Default
838- ======================= ==================================================== ==========================
839- ``csv_delimiter `` Sets the field delimiter separating values (one ``, ``
836+ ======================= ===================================================== ==========================
837+ Option Description Default
838+ ======================= ===================================================== ==========================
839+ ``csv_delimiter `` Sets the field delimiter separating values (one ``, ``
840840 character only)
841- ``csv_enclosure `` Sets the field enclosure (one character only) ``" ``
841+ ``csv_enclosure `` Sets the field enclosure (one character only) ``" ``
842842``csv_escape_char `` Sets the escape character (at most one character)
843- ``csv_key_separator `` Sets the separator for array's keys during its ``. ``
843+ ``csv_key_separator `` Sets the separator for array's keys during its ``. ``
844844 flattening
845845``csv_headers `` Sets the order of the header and data columns
846846 E.g.: if ``$data = ['c' => 3, 'a' => 1, 'b' => 2] ``
847847 and ``$options = ['csv_headers' => ['a', 'b', 'c']] ``
848848 then ``serialize($data, 'csv', $options) `` returns
849- ``a,b,c\n1,2,3 `` ``[] ``, inferred from input data's keys
850- ``csv_escape_formulas `` Escapes fields containg formulas by prepending them ``false ``
849+ ``a,b,c\n1,2,3 `` ``[] ``, inferred from input data's keys
850+ ``csv_escape_formulas `` Escapes fields containg formulas by prepending them ``false ``
851851 with a ``\t `` character
852852``as_collection `` Always returns results as a collection, even if only
853853 one line is decoded.
854- ``no_headers `` Disables header in the encoded CSV ``false ``
855- ``output_utf8_bom `` Outputs special `UTF-8 BOM `_ along with encoded data ``false ``
856- ======================= ==================================================== ==========================
854+ ``no_headers `` Disables header in the encoded CSV ``false ``
855+ ``output_utf8_bom `` Outputs special `UTF-8 BOM `_ along with encoded data ``false ``
856+ ======================= ===================================================== ==========================
857857
858858.. versionadded :: 4.4
859859
0 commit comments