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 \World"!"
Equals? bool(false)
================================================================================
Output for 8.4.15
/bin/php-8.4.15: /usr/lib/libm.so.6: version `GLIBC_2.38' not found (required by /bin/php-8.4.15)
/bin/php-8.4.15: /usr/lib/libm.so.6: version `GLIBC_2.35' not found (required by /bin/php-8.4.15)
/bin/php-8.4.15: /usr/lib/libc.so.6: version `GLIBC_2.34' not found (required by /bin/php-8.4.15)
/bin/php-8.4.15: /usr/lib/libc.so.6: version `GLIBC_2.38' not found (required by /bin/php-8.4.15)
Process exited with code 1.
Output for 5.5.0 - 5.5.3
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 \World""!"
Equals? bool(false)
================================================================================