Lines Matching refs:fgetcsv
2 Test fgetcsv() : usage variations - with line without any csv fields
5 /* Testing fgetcsv() to read a line from a file which doesn't have any CSV field */
7 echo "*** Testing fgetcsv() : reading the line which is without csv fields ***\n";
43 echo "\n-- Testing fgetcsv() with file opened using $file_modes[$mode_counter] mode --\n";
46 // read the line which is without csv fields, provide delimiter and see the working of fgetcsv
48 var_dump( fgetcsv($file_handle, escape: "\\") );
62 *** Testing fgetcsv() : reading the line which is without csv fields ***
64 -- Testing fgetcsv() with file opened using r mode --
72 -- Testing fgetcsv() with file opened using rb mode --
80 -- Testing fgetcsv() with file opened using rt mode --
88 -- Testing fgetcsv() with file opened using r+ mode --
96 -- Testing fgetcsv() with file opened using r+b mode --
104 -- Testing fgetcsv() with file opened using r+t mode --
112 -- Testing fgetcsv() with file opened using a+ mode --
120 -- Testing fgetcsv() with file opened using a+b mode --
128 -- Testing fgetcsv() with file opened using a+t mode --
136 -- Testing fgetcsv() with file opened using w+ mode --
144 -- Testing fgetcsv() with file opened using w+b mode --
152 -- Testing fgetcsv() with file opened using w+t mode --
160 -- Testing fgetcsv() with file opened using x+ mode --
168 -- Testing fgetcsv() with file opened using x+b mode --
176 -- Testing fgetcsv() with file opened using x+t mode --