READING RFC CSV
---------------
To read a well formatted CSV, you must use the `double-quote` char as enclosure and
as escape
Expected: "Hello\", World!
Actual : "Hello\", World!
Equals? bool(true)
================================================================================
WRITING
-------
There is no way to write a well formatted CSV even. The support for the escape param
in the fputcsv function do not fix the invalid format.
Expected: """Hello\"", World!"
Actual : ""Hello\", World!"
Equals? bool(false)
================================================================================
READING PHP CSV
---------------
If you read a PHP formatted CSV using use the `double-quote` char as enclosure and
as escape, the result is not the expected one.
Expected: "Hello\", World!
Actual : Hello\"
Equals? bool(false)
================================================================================
READING RFC CSV
---------------
To read a well formatted CSV, you must use the `double-quote` char as enclosure and
as escape
Expected: "Hello\", World!
Actual : "Hello\", World!
Equals? bool(true)
================================================================================
WRITING
-------
There is no way to write a well formatted CSV even. The support for the escape param
in the fputcsv function do not fix the invalid format.
Expected: """Hello\"", World!"
Actual : """Hello\", World!"
Equals? bool(false)
================================================================================
READING PHP CSV
---------------
If you read a PHP formatted CSV using use the `double-quote` char as enclosure and
as escape, the result is not the expected one.
Expected: "Hello\", World!
Actual : "Hello\
Equals? bool(false)
================================================================================