json-to-csv()
The json-to-csv
function translates the given OXN array
into CSV as described in RFC 4180. The array entries must either be arrays or "flat" objects with number
, boolean
, string
, or null
values.
If any errors occur, an empty string
is returned.
Example: array of arrays
creates the following output:
Example: array of "flat" objects
creates the same output.
Last updated