Lines Matching refs:fgetcsv
2 Test fgetcsv() : usage variations - reading the blank line
5 /* Testing fgetcsv() by reading a file containing a blank line */
7 echo "*** Testing fgetcsv() : reading the blank line ***\n";
43 echo "\n-- Testing fgetcsv() with file opened using $file_modes[$mode_counter] mode --\n";
45 // call fgetcsv() to parse csv fields
47 // read the next line which is a blank line to see the working of fgetcsv
49 var_dump( fgetcsv($file_handle, 1024) );
54 var_dump( fgetcsv($file_handle, 1024) );
68 *** Testing fgetcsv() : reading the blank line ***
70 -- Testing fgetcsv() with file opened using r mode --
81 -- Testing fgetcsv() with file opened using rb mode --
92 -- Testing fgetcsv() with file opened using rt mode --
103 -- Testing fgetcsv() with file opened using r+ mode --
114 -- Testing fgetcsv() with file opened using r+b mode --
125 -- Testing fgetcsv() with file opened using r+t mode --
136 -- Testing fgetcsv() with file opened using a+ mode --
147 -- Testing fgetcsv() with file opened using a+b mode --
158 -- Testing fgetcsv() with file opened using a+t mode --
169 -- Testing fgetcsv() with file opened using w+ mode --
180 -- Testing fgetcsv() with file opened using w+b mode --
191 -- Testing fgetcsv() with file opened using w+t mode --
202 -- Testing fgetcsv() with file opened using x+ mode --
213 -- Testing fgetcsv() with file opened using x+b mode --
224 -- Testing fgetcsv() with file opened using x+t mode --