|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2009-12-29 12:16 UTC] jani@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Oct 28 03:00:02 2025 UTC |
Description: ------------ fgetcsv cann't process "\\def" . (But "\\def" is OK). Reproduce code: --------------- php -r "fputcsv(STDOUT, array('abc\\def', 'field2'));" | php -r "var_dump(fgetcsv(STDIN));" Expected result: ---------------- array(2) { [0]=> string(13) "abc\def" [1]=> string(6) "field2" } Actual result: -------------- array(1) { [0]=> string(22) "abc\def",field2 " }