fgetcsv_variation19.phpt 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465
  1. --TEST--
  2. Test fgetcsv() : usage variations - with enclosure of two chars
  3. --FILE--
  4. <?php
  5. /*
  6. Testing fgetcsv() to read a file when provided with default enclosure character
  7. and with delimiter of two characters
  8. */
  9. echo "*** Testing fgetcsv() : with default enclosure & delimiter of two chars ***\n";
  10. /* the array is with two elements in it. Each element should be read as
  11. 1st element is delimiter & 2nd element is csv fields
  12. */
  13. $csv_lists = array (
  14. array(',', 'water,fruit'),
  15. array(' ', 'water fruit'),
  16. array(' ', '"water" "fruit"'),
  17. array('\\', 'water\\"fruit"\\"air"'),
  18. array('\\', '"water"\\"fruit"\\"""'),
  19. );
  20. $filename = __DIR__ . '/fgetcsv_variation19.tmp';
  21. @unlink($filename);
  22. $file_modes = array ("r","rb", "rt", "r+", "r+b", "r+t",
  23. "a+", "a+b", "a+t",
  24. "w+", "w+b", "w+t",
  25. "x+", "x+b", "x+t");
  26. $loop_counter = 1;
  27. foreach ($csv_lists as $csv_list) {
  28. for($mode_counter = 0; $mode_counter < count($file_modes); $mode_counter++) {
  29. // create the file and add the content with has csv fields
  30. if ( strstr($file_modes[$mode_counter], "r") ) {
  31. $file_handle = fopen($filename, "w");
  32. } else {
  33. $file_handle = fopen($filename, $file_modes[$mode_counter] );
  34. }
  35. if ( !$file_handle ) {
  36. echo "Error: failed to create file $filename!\n";
  37. exit();
  38. }
  39. $delimiter = $csv_list[0];
  40. $csv_field = $csv_list[1];
  41. fwrite($file_handle, $csv_field . "\n");
  42. // write another line of text and a blank line
  43. // this will be used to test, if the fgetcsv() read more than a line and its
  44. // working when only a blank line is read
  45. fwrite($file_handle, "This is line of text without csv fields\n");
  46. fwrite($file_handle, "\n"); // blank line
  47. // close the file if the mode to be used is read mode and re-open using read mode
  48. // else rewind the file pointer to beginning of the file
  49. if ( strstr($file_modes[$mode_counter], "r" ) ) {
  50. fclose($file_handle);
  51. $file_handle = fopen($filename, $file_modes[$mode_counter]);
  52. } else {
  53. // rewind the file pointer to bof
  54. rewind($file_handle);
  55. }
  56. echo "\n-- Testing fgetcsv() with file opened using $file_modes[$mode_counter] mode --\n";
  57. // call fgetcsv() to parse csv fields
  58. // use delimiter & enclosure char of two chars
  59. fseek($file_handle, 0, SEEK_SET);
  60. $del = "++";
  61. try {
  62. var_dump( fgetcsv($file_handle, 1024, $del) );
  63. } catch (ValueError $e) {
  64. echo $e->getMessage(), "\n";
  65. }
  66. // check the file pointer position and if eof
  67. var_dump( ftell($file_handle) );
  68. var_dump( feof($file_handle) );
  69. // close the file
  70. fclose($file_handle);
  71. //delete file
  72. unlink($filename);
  73. } //end of mode loop
  74. } // end of foreach
  75. echo "Done\n";
  76. ?>
  77. --EXPECT--
  78. *** Testing fgetcsv() : with default enclosure & delimiter of two chars ***
  79. -- Testing fgetcsv() with file opened using r mode --
  80. fgetcsv(): Argument #3 ($separator) must be a single character
  81. int(0)
  82. bool(false)
  83. -- Testing fgetcsv() with file opened using rb mode --
  84. fgetcsv(): Argument #3 ($separator) must be a single character
  85. int(0)
  86. bool(false)
  87. -- Testing fgetcsv() with file opened using rt mode --
  88. fgetcsv(): Argument #3 ($separator) must be a single character
  89. int(0)
  90. bool(false)
  91. -- Testing fgetcsv() with file opened using r+ mode --
  92. fgetcsv(): Argument #3 ($separator) must be a single character
  93. int(0)
  94. bool(false)
  95. -- Testing fgetcsv() with file opened using r+b mode --
  96. fgetcsv(): Argument #3 ($separator) must be a single character
  97. int(0)
  98. bool(false)
  99. -- Testing fgetcsv() with file opened using r+t mode --
  100. fgetcsv(): Argument #3 ($separator) must be a single character
  101. int(0)
  102. bool(false)
  103. -- Testing fgetcsv() with file opened using a+ mode --
  104. fgetcsv(): Argument #3 ($separator) must be a single character
  105. int(0)
  106. bool(false)
  107. -- Testing fgetcsv() with file opened using a+b mode --
  108. fgetcsv(): Argument #3 ($separator) must be a single character
  109. int(0)
  110. bool(false)
  111. -- Testing fgetcsv() with file opened using a+t mode --
  112. fgetcsv(): Argument #3 ($separator) must be a single character
  113. int(0)
  114. bool(false)
  115. -- Testing fgetcsv() with file opened using w+ mode --
  116. fgetcsv(): Argument #3 ($separator) must be a single character
  117. int(0)
  118. bool(false)
  119. -- Testing fgetcsv() with file opened using w+b mode --
  120. fgetcsv(): Argument #3 ($separator) must be a single character
  121. int(0)
  122. bool(false)
  123. -- Testing fgetcsv() with file opened using w+t mode --
  124. fgetcsv(): Argument #3 ($separator) must be a single character
  125. int(0)
  126. bool(false)
  127. -- Testing fgetcsv() with file opened using x+ mode --
  128. fgetcsv(): Argument #3 ($separator) must be a single character
  129. int(0)
  130. bool(false)
  131. -- Testing fgetcsv() with file opened using x+b mode --
  132. fgetcsv(): Argument #3 ($separator) must be a single character
  133. int(0)
  134. bool(false)
  135. -- Testing fgetcsv() with file opened using x+t mode --
  136. fgetcsv(): Argument #3 ($separator) must be a single character
  137. int(0)
  138. bool(false)
  139. -- Testing fgetcsv() with file opened using r mode --
  140. fgetcsv(): Argument #3 ($separator) must be a single character
  141. int(0)
  142. bool(false)
  143. -- Testing fgetcsv() with file opened using rb mode --
  144. fgetcsv(): Argument #3 ($separator) must be a single character
  145. int(0)
  146. bool(false)
  147. -- Testing fgetcsv() with file opened using rt mode --
  148. fgetcsv(): Argument #3 ($separator) must be a single character
  149. int(0)
  150. bool(false)
  151. -- Testing fgetcsv() with file opened using r+ mode --
  152. fgetcsv(): Argument #3 ($separator) must be a single character
  153. int(0)
  154. bool(false)
  155. -- Testing fgetcsv() with file opened using r+b mode --
  156. fgetcsv(): Argument #3 ($separator) must be a single character
  157. int(0)
  158. bool(false)
  159. -- Testing fgetcsv() with file opened using r+t mode --
  160. fgetcsv(): Argument #3 ($separator) must be a single character
  161. int(0)
  162. bool(false)
  163. -- Testing fgetcsv() with file opened using a+ mode --
  164. fgetcsv(): Argument #3 ($separator) must be a single character
  165. int(0)
  166. bool(false)
  167. -- Testing fgetcsv() with file opened using a+b mode --
  168. fgetcsv(): Argument #3 ($separator) must be a single character
  169. int(0)
  170. bool(false)
  171. -- Testing fgetcsv() with file opened using a+t mode --
  172. fgetcsv(): Argument #3 ($separator) must be a single character
  173. int(0)
  174. bool(false)
  175. -- Testing fgetcsv() with file opened using w+ mode --
  176. fgetcsv(): Argument #3 ($separator) must be a single character
  177. int(0)
  178. bool(false)
  179. -- Testing fgetcsv() with file opened using w+b mode --
  180. fgetcsv(): Argument #3 ($separator) must be a single character
  181. int(0)
  182. bool(false)
  183. -- Testing fgetcsv() with file opened using w+t mode --
  184. fgetcsv(): Argument #3 ($separator) must be a single character
  185. int(0)
  186. bool(false)
  187. -- Testing fgetcsv() with file opened using x+ mode --
  188. fgetcsv(): Argument #3 ($separator) must be a single character
  189. int(0)
  190. bool(false)
  191. -- Testing fgetcsv() with file opened using x+b mode --
  192. fgetcsv(): Argument #3 ($separator) must be a single character
  193. int(0)
  194. bool(false)
  195. -- Testing fgetcsv() with file opened using x+t mode --
  196. fgetcsv(): Argument #3 ($separator) must be a single character
  197. int(0)
  198. bool(false)
  199. -- Testing fgetcsv() with file opened using r mode --
  200. fgetcsv(): Argument #3 ($separator) must be a single character
  201. int(0)
  202. bool(false)
  203. -- Testing fgetcsv() with file opened using rb mode --
  204. fgetcsv(): Argument #3 ($separator) must be a single character
  205. int(0)
  206. bool(false)
  207. -- Testing fgetcsv() with file opened using rt mode --
  208. fgetcsv(): Argument #3 ($separator) must be a single character
  209. int(0)
  210. bool(false)
  211. -- Testing fgetcsv() with file opened using r+ mode --
  212. fgetcsv(): Argument #3 ($separator) must be a single character
  213. int(0)
  214. bool(false)
  215. -- Testing fgetcsv() with file opened using r+b mode --
  216. fgetcsv(): Argument #3 ($separator) must be a single character
  217. int(0)
  218. bool(false)
  219. -- Testing fgetcsv() with file opened using r+t mode --
  220. fgetcsv(): Argument #3 ($separator) must be a single character
  221. int(0)
  222. bool(false)
  223. -- Testing fgetcsv() with file opened using a+ mode --
  224. fgetcsv(): Argument #3 ($separator) must be a single character
  225. int(0)
  226. bool(false)
  227. -- Testing fgetcsv() with file opened using a+b mode --
  228. fgetcsv(): Argument #3 ($separator) must be a single character
  229. int(0)
  230. bool(false)
  231. -- Testing fgetcsv() with file opened using a+t mode --
  232. fgetcsv(): Argument #3 ($separator) must be a single character
  233. int(0)
  234. bool(false)
  235. -- Testing fgetcsv() with file opened using w+ mode --
  236. fgetcsv(): Argument #3 ($separator) must be a single character
  237. int(0)
  238. bool(false)
  239. -- Testing fgetcsv() with file opened using w+b mode --
  240. fgetcsv(): Argument #3 ($separator) must be a single character
  241. int(0)
  242. bool(false)
  243. -- Testing fgetcsv() with file opened using w+t mode --
  244. fgetcsv(): Argument #3 ($separator) must be a single character
  245. int(0)
  246. bool(false)
  247. -- Testing fgetcsv() with file opened using x+ mode --
  248. fgetcsv(): Argument #3 ($separator) must be a single character
  249. int(0)
  250. bool(false)
  251. -- Testing fgetcsv() with file opened using x+b mode --
  252. fgetcsv(): Argument #3 ($separator) must be a single character
  253. int(0)
  254. bool(false)
  255. -- Testing fgetcsv() with file opened using x+t mode --
  256. fgetcsv(): Argument #3 ($separator) must be a single character
  257. int(0)
  258. bool(false)
  259. -- Testing fgetcsv() with file opened using r mode --
  260. fgetcsv(): Argument #3 ($separator) must be a single character
  261. int(0)
  262. bool(false)
  263. -- Testing fgetcsv() with file opened using rb mode --
  264. fgetcsv(): Argument #3 ($separator) must be a single character
  265. int(0)
  266. bool(false)
  267. -- Testing fgetcsv() with file opened using rt mode --
  268. fgetcsv(): Argument #3 ($separator) must be a single character
  269. int(0)
  270. bool(false)
  271. -- Testing fgetcsv() with file opened using r+ mode --
  272. fgetcsv(): Argument #3 ($separator) must be a single character
  273. int(0)
  274. bool(false)
  275. -- Testing fgetcsv() with file opened using r+b mode --
  276. fgetcsv(): Argument #3 ($separator) must be a single character
  277. int(0)
  278. bool(false)
  279. -- Testing fgetcsv() with file opened using r+t mode --
  280. fgetcsv(): Argument #3 ($separator) must be a single character
  281. int(0)
  282. bool(false)
  283. -- Testing fgetcsv() with file opened using a+ mode --
  284. fgetcsv(): Argument #3 ($separator) must be a single character
  285. int(0)
  286. bool(false)
  287. -- Testing fgetcsv() with file opened using a+b mode --
  288. fgetcsv(): Argument #3 ($separator) must be a single character
  289. int(0)
  290. bool(false)
  291. -- Testing fgetcsv() with file opened using a+t mode --
  292. fgetcsv(): Argument #3 ($separator) must be a single character
  293. int(0)
  294. bool(false)
  295. -- Testing fgetcsv() with file opened using w+ mode --
  296. fgetcsv(): Argument #3 ($separator) must be a single character
  297. int(0)
  298. bool(false)
  299. -- Testing fgetcsv() with file opened using w+b mode --
  300. fgetcsv(): Argument #3 ($separator) must be a single character
  301. int(0)
  302. bool(false)
  303. -- Testing fgetcsv() with file opened using w+t mode --
  304. fgetcsv(): Argument #3 ($separator) must be a single character
  305. int(0)
  306. bool(false)
  307. -- Testing fgetcsv() with file opened using x+ mode --
  308. fgetcsv(): Argument #3 ($separator) must be a single character
  309. int(0)
  310. bool(false)
  311. -- Testing fgetcsv() with file opened using x+b mode --
  312. fgetcsv(): Argument #3 ($separator) must be a single character
  313. int(0)
  314. bool(false)
  315. -- Testing fgetcsv() with file opened using x+t mode --
  316. fgetcsv(): Argument #3 ($separator) must be a single character
  317. int(0)
  318. bool(false)
  319. -- Testing fgetcsv() with file opened using r mode --
  320. fgetcsv(): Argument #3 ($separator) must be a single character
  321. int(0)
  322. bool(false)
  323. -- Testing fgetcsv() with file opened using rb mode --
  324. fgetcsv(): Argument #3 ($separator) must be a single character
  325. int(0)
  326. bool(false)
  327. -- Testing fgetcsv() with file opened using rt mode --
  328. fgetcsv(): Argument #3 ($separator) must be a single character
  329. int(0)
  330. bool(false)
  331. -- Testing fgetcsv() with file opened using r+ mode --
  332. fgetcsv(): Argument #3 ($separator) must be a single character
  333. int(0)
  334. bool(false)
  335. -- Testing fgetcsv() with file opened using r+b mode --
  336. fgetcsv(): Argument #3 ($separator) must be a single character
  337. int(0)
  338. bool(false)
  339. -- Testing fgetcsv() with file opened using r+t mode --
  340. fgetcsv(): Argument #3 ($separator) must be a single character
  341. int(0)
  342. bool(false)
  343. -- Testing fgetcsv() with file opened using a+ mode --
  344. fgetcsv(): Argument #3 ($separator) must be a single character
  345. int(0)
  346. bool(false)
  347. -- Testing fgetcsv() with file opened using a+b mode --
  348. fgetcsv(): Argument #3 ($separator) must be a single character
  349. int(0)
  350. bool(false)
  351. -- Testing fgetcsv() with file opened using a+t mode --
  352. fgetcsv(): Argument #3 ($separator) must be a single character
  353. int(0)
  354. bool(false)
  355. -- Testing fgetcsv() with file opened using w+ mode --
  356. fgetcsv(): Argument #3 ($separator) must be a single character
  357. int(0)
  358. bool(false)
  359. -- Testing fgetcsv() with file opened using w+b mode --
  360. fgetcsv(): Argument #3 ($separator) must be a single character
  361. int(0)
  362. bool(false)
  363. -- Testing fgetcsv() with file opened using w+t mode --
  364. fgetcsv(): Argument #3 ($separator) must be a single character
  365. int(0)
  366. bool(false)
  367. -- Testing fgetcsv() with file opened using x+ mode --
  368. fgetcsv(): Argument #3 ($separator) must be a single character
  369. int(0)
  370. bool(false)
  371. -- Testing fgetcsv() with file opened using x+b mode --
  372. fgetcsv(): Argument #3 ($separator) must be a single character
  373. int(0)
  374. bool(false)
  375. -- Testing fgetcsv() with file opened using x+t mode --
  376. fgetcsv(): Argument #3 ($separator) must be a single character
  377. int(0)
  378. bool(false)
  379. Done