fgetcsv_variation30.phpt 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609
  1. --TEST--
  2. Test fgetcsv() : usage variations - with file handle and length, file pointer pointing at end of file
  3. --FILE--
  4. <?php
  5. /*
  6. Testing fgetcsv() to read a file whose file pointer is pointing to end of file
  7. and fgetcsv() provided with file handle and length arguments
  8. */
  9. echo "*** Testing fgetcsv() : with file handle and length arguments, file pointer pointing at end of file ***\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_variation30.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 blan 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. if ( strstr($file_modes[$mode_counter], "r" ) ) {
  49. fclose($file_handle);
  50. $file_handle = fopen($filename, $file_modes[$mode_counter]);
  51. }
  52. echo "\n-- Testing fgetcsv() with file opened using $file_modes[$mode_counter] mode --\n";
  53. // set the file pointer to EOF
  54. var_dump( fseek($file_handle, 0, SEEK_END) );
  55. // call fgetcsv() to parse csv fields
  56. // now file pointer should point to end of the file, try reading again
  57. var_dump( feof($file_handle) );
  58. var_dump( fgetcsv($file_handle, 1024) );
  59. // check the file pointer position and if eof
  60. var_dump( ftell($file_handle) );
  61. var_dump( feof($file_handle) );
  62. // close the file
  63. fclose($file_handle);
  64. //delete file
  65. unlink($filename);
  66. } //end of mode loop
  67. } // end of foreach
  68. echo "Done\n";
  69. ?>
  70. --EXPECTF--
  71. *** Testing fgetcsv() : with file handle and length arguments, file pointer pointing at end of file ***
  72. -- Testing fgetcsv() with file opened using r mode --
  73. int(0)
  74. bool(false)
  75. bool(false)
  76. int(53)
  77. bool(true)
  78. -- Testing fgetcsv() with file opened using rb mode --
  79. int(0)
  80. bool(false)
  81. bool(false)
  82. int(53)
  83. bool(true)
  84. -- Testing fgetcsv() with file opened using rt mode --
  85. int(0)
  86. bool(false)
  87. bool(false)
  88. int(%d)
  89. bool(true)
  90. -- Testing fgetcsv() with file opened using r+ mode --
  91. int(0)
  92. bool(false)
  93. bool(false)
  94. int(53)
  95. bool(true)
  96. -- Testing fgetcsv() with file opened using r+b mode --
  97. int(0)
  98. bool(false)
  99. bool(false)
  100. int(53)
  101. bool(true)
  102. -- Testing fgetcsv() with file opened using r+t mode --
  103. int(0)
  104. bool(false)
  105. bool(false)
  106. int(%d)
  107. bool(true)
  108. -- Testing fgetcsv() with file opened using a+ mode --
  109. int(0)
  110. bool(false)
  111. bool(false)
  112. int(53)
  113. bool(true)
  114. -- Testing fgetcsv() with file opened using a+b mode --
  115. int(0)
  116. bool(false)
  117. bool(false)
  118. int(53)
  119. bool(true)
  120. -- Testing fgetcsv() with file opened using a+t mode --
  121. int(0)
  122. bool(false)
  123. bool(false)
  124. int(%d)
  125. bool(true)
  126. -- Testing fgetcsv() with file opened using w+ mode --
  127. int(0)
  128. bool(false)
  129. bool(false)
  130. int(53)
  131. bool(true)
  132. -- Testing fgetcsv() with file opened using w+b mode --
  133. int(0)
  134. bool(false)
  135. bool(false)
  136. int(53)
  137. bool(true)
  138. -- Testing fgetcsv() with file opened using w+t mode --
  139. int(0)
  140. bool(false)
  141. bool(false)
  142. int(%d)
  143. bool(true)
  144. -- Testing fgetcsv() with file opened using x+ mode --
  145. int(0)
  146. bool(false)
  147. bool(false)
  148. int(53)
  149. bool(true)
  150. -- Testing fgetcsv() with file opened using x+b mode --
  151. int(0)
  152. bool(false)
  153. bool(false)
  154. int(53)
  155. bool(true)
  156. -- Testing fgetcsv() with file opened using x+t mode --
  157. int(0)
  158. bool(false)
  159. bool(false)
  160. int(%d)
  161. bool(true)
  162. -- Testing fgetcsv() with file opened using r mode --
  163. int(0)
  164. bool(false)
  165. bool(false)
  166. int(53)
  167. bool(true)
  168. -- Testing fgetcsv() with file opened using rb mode --
  169. int(0)
  170. bool(false)
  171. bool(false)
  172. int(53)
  173. bool(true)
  174. -- Testing fgetcsv() with file opened using rt mode --
  175. int(0)
  176. bool(false)
  177. bool(false)
  178. int(%d)
  179. bool(true)
  180. -- Testing fgetcsv() with file opened using r+ mode --
  181. int(0)
  182. bool(false)
  183. bool(false)
  184. int(53)
  185. bool(true)
  186. -- Testing fgetcsv() with file opened using r+b mode --
  187. int(0)
  188. bool(false)
  189. bool(false)
  190. int(53)
  191. bool(true)
  192. -- Testing fgetcsv() with file opened using r+t mode --
  193. int(0)
  194. bool(false)
  195. bool(false)
  196. int(%d)
  197. bool(true)
  198. -- Testing fgetcsv() with file opened using a+ mode --
  199. int(0)
  200. bool(false)
  201. bool(false)
  202. int(53)
  203. bool(true)
  204. -- Testing fgetcsv() with file opened using a+b mode --
  205. int(0)
  206. bool(false)
  207. bool(false)
  208. int(53)
  209. bool(true)
  210. -- Testing fgetcsv() with file opened using a+t mode --
  211. int(0)
  212. bool(false)
  213. bool(false)
  214. int(%d)
  215. bool(true)
  216. -- Testing fgetcsv() with file opened using w+ mode --
  217. int(0)
  218. bool(false)
  219. bool(false)
  220. int(53)
  221. bool(true)
  222. -- Testing fgetcsv() with file opened using w+b mode --
  223. int(0)
  224. bool(false)
  225. bool(false)
  226. int(53)
  227. bool(true)
  228. -- Testing fgetcsv() with file opened using w+t mode --
  229. int(0)
  230. bool(false)
  231. bool(false)
  232. int(%d)
  233. bool(true)
  234. -- Testing fgetcsv() with file opened using x+ mode --
  235. int(0)
  236. bool(false)
  237. bool(false)
  238. int(53)
  239. bool(true)
  240. -- Testing fgetcsv() with file opened using x+b mode --
  241. int(0)
  242. bool(false)
  243. bool(false)
  244. int(53)
  245. bool(true)
  246. -- Testing fgetcsv() with file opened using x+t mode --
  247. int(0)
  248. bool(false)
  249. bool(false)
  250. int(%d)
  251. bool(true)
  252. -- Testing fgetcsv() with file opened using r mode --
  253. int(0)
  254. bool(false)
  255. bool(false)
  256. int(57)
  257. bool(true)
  258. -- Testing fgetcsv() with file opened using rb mode --
  259. int(0)
  260. bool(false)
  261. bool(false)
  262. int(57)
  263. bool(true)
  264. -- Testing fgetcsv() with file opened using rt mode --
  265. int(0)
  266. bool(false)
  267. bool(false)
  268. int(%d)
  269. bool(true)
  270. -- Testing fgetcsv() with file opened using r+ mode --
  271. int(0)
  272. bool(false)
  273. bool(false)
  274. int(57)
  275. bool(true)
  276. -- Testing fgetcsv() with file opened using r+b mode --
  277. int(0)
  278. bool(false)
  279. bool(false)
  280. int(57)
  281. bool(true)
  282. -- Testing fgetcsv() with file opened using r+t mode --
  283. int(0)
  284. bool(false)
  285. bool(false)
  286. int(%d)
  287. bool(true)
  288. -- Testing fgetcsv() with file opened using a+ mode --
  289. int(0)
  290. bool(false)
  291. bool(false)
  292. int(57)
  293. bool(true)
  294. -- Testing fgetcsv() with file opened using a+b mode --
  295. int(0)
  296. bool(false)
  297. bool(false)
  298. int(57)
  299. bool(true)
  300. -- Testing fgetcsv() with file opened using a+t mode --
  301. int(0)
  302. bool(false)
  303. bool(false)
  304. int(%d)
  305. bool(true)
  306. -- Testing fgetcsv() with file opened using w+ mode --
  307. int(0)
  308. bool(false)
  309. bool(false)
  310. int(57)
  311. bool(true)
  312. -- Testing fgetcsv() with file opened using w+b mode --
  313. int(0)
  314. bool(false)
  315. bool(false)
  316. int(57)
  317. bool(true)
  318. -- Testing fgetcsv() with file opened using w+t mode --
  319. int(0)
  320. bool(false)
  321. bool(false)
  322. int(%d)
  323. bool(true)
  324. -- Testing fgetcsv() with file opened using x+ mode --
  325. int(0)
  326. bool(false)
  327. bool(false)
  328. int(57)
  329. bool(true)
  330. -- Testing fgetcsv() with file opened using x+b mode --
  331. int(0)
  332. bool(false)
  333. bool(false)
  334. int(57)
  335. bool(true)
  336. -- Testing fgetcsv() with file opened using x+t mode --
  337. int(0)
  338. bool(false)
  339. bool(false)
  340. int(%d)
  341. bool(true)
  342. -- Testing fgetcsv() with file opened using r mode --
  343. int(0)
  344. bool(false)
  345. bool(false)
  346. int(61)
  347. bool(true)
  348. -- Testing fgetcsv() with file opened using rb mode --
  349. int(0)
  350. bool(false)
  351. bool(false)
  352. int(61)
  353. bool(true)
  354. -- Testing fgetcsv() with file opened using rt mode --
  355. int(0)
  356. bool(false)
  357. bool(false)
  358. int(%d)
  359. bool(true)
  360. -- Testing fgetcsv() with file opened using r+ mode --
  361. int(0)
  362. bool(false)
  363. bool(false)
  364. int(61)
  365. bool(true)
  366. -- Testing fgetcsv() with file opened using r+b mode --
  367. int(0)
  368. bool(false)
  369. bool(false)
  370. int(61)
  371. bool(true)
  372. -- Testing fgetcsv() with file opened using r+t mode --
  373. int(0)
  374. bool(false)
  375. bool(false)
  376. int(%d)
  377. bool(true)
  378. -- Testing fgetcsv() with file opened using a+ mode --
  379. int(0)
  380. bool(false)
  381. bool(false)
  382. int(61)
  383. bool(true)
  384. -- Testing fgetcsv() with file opened using a+b mode --
  385. int(0)
  386. bool(false)
  387. bool(false)
  388. int(61)
  389. bool(true)
  390. -- Testing fgetcsv() with file opened using a+t mode --
  391. int(0)
  392. bool(false)
  393. bool(false)
  394. int(%d)
  395. bool(true)
  396. -- Testing fgetcsv() with file opened using w+ mode --
  397. int(0)
  398. bool(false)
  399. bool(false)
  400. int(61)
  401. bool(true)
  402. -- Testing fgetcsv() with file opened using w+b mode --
  403. int(0)
  404. bool(false)
  405. bool(false)
  406. int(61)
  407. bool(true)
  408. -- Testing fgetcsv() with file opened using w+t mode --
  409. int(0)
  410. bool(false)
  411. bool(false)
  412. int(%d)
  413. bool(true)
  414. -- Testing fgetcsv() with file opened using x+ mode --
  415. int(0)
  416. bool(false)
  417. bool(false)
  418. int(61)
  419. bool(true)
  420. -- Testing fgetcsv() with file opened using x+b mode --
  421. int(0)
  422. bool(false)
  423. bool(false)
  424. int(61)
  425. bool(true)
  426. -- Testing fgetcsv() with file opened using x+t mode --
  427. int(0)
  428. bool(false)
  429. bool(false)
  430. int(%d)
  431. bool(true)
  432. -- Testing fgetcsv() with file opened using r mode --
  433. int(0)
  434. bool(false)
  435. bool(false)
  436. int(61)
  437. bool(true)
  438. -- Testing fgetcsv() with file opened using rb mode --
  439. int(0)
  440. bool(false)
  441. bool(false)
  442. int(61)
  443. bool(true)
  444. -- Testing fgetcsv() with file opened using rt mode --
  445. int(0)
  446. bool(false)
  447. bool(false)
  448. int(%d)
  449. bool(true)
  450. -- Testing fgetcsv() with file opened using r+ mode --
  451. int(0)
  452. bool(false)
  453. bool(false)
  454. int(61)
  455. bool(true)
  456. -- Testing fgetcsv() with file opened using r+b mode --
  457. int(0)
  458. bool(false)
  459. bool(false)
  460. int(61)
  461. bool(true)
  462. -- Testing fgetcsv() with file opened using r+t mode --
  463. int(0)
  464. bool(false)
  465. bool(false)
  466. int(%d)
  467. bool(true)
  468. -- Testing fgetcsv() with file opened using a+ mode --
  469. int(0)
  470. bool(false)
  471. bool(false)
  472. int(61)
  473. bool(true)
  474. -- Testing fgetcsv() with file opened using a+b mode --
  475. int(0)
  476. bool(false)
  477. bool(false)
  478. int(61)
  479. bool(true)
  480. -- Testing fgetcsv() with file opened using a+t mode --
  481. int(0)
  482. bool(false)
  483. bool(false)
  484. int(%d)
  485. bool(true)
  486. -- Testing fgetcsv() with file opened using w+ mode --
  487. int(0)
  488. bool(false)
  489. bool(false)
  490. int(61)
  491. bool(true)
  492. -- Testing fgetcsv() with file opened using w+b mode --
  493. int(0)
  494. bool(false)
  495. bool(false)
  496. int(61)
  497. bool(true)
  498. -- Testing fgetcsv() with file opened using w+t mode --
  499. int(0)
  500. bool(false)
  501. bool(false)
  502. int(%d)
  503. bool(true)
  504. -- Testing fgetcsv() with file opened using x+ mode --
  505. int(0)
  506. bool(false)
  507. bool(false)
  508. int(61)
  509. bool(true)
  510. -- Testing fgetcsv() with file opened using x+b mode --
  511. int(0)
  512. bool(false)
  513. bool(false)
  514. int(61)
  515. bool(true)
  516. -- Testing fgetcsv() with file opened using x+t mode --
  517. int(0)
  518. bool(false)
  519. bool(false)
  520. int(%d)
  521. bool(true)
  522. Done