fgetcsv_variation29.phpt 11 KB

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