I have a result with a HTML text column. I want to export it to a format convenient for processing. After JSON exporter failed me, I tried PHP array exporter. It outputs strings with single quotes. That breaks escape sequences, e.g. newlines.
Example output:
$foo = array(
array( // row #0
'BAR-BAZ',
'hello\nworld'
),
);