fgetcsv_variation18.phpt 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689
  1. --TEST--
  2. Test fgetcsv() : usage variations - with default enclosure and different delimiter
  3. --FILE--
  4. <?php
  5. /*
  6. Description: Gets line from file pointer and parse for CSV fields
  7. */
  8. /* Testing fgetcsv() to read a file when provided with default enclosure character
  9. and with delimiter character which is not in the line being read by fgetcsv()
  10. */
  11. echo "*** Testing fgetcsv() : with default enclosure and different delimiter ***\n";
  12. /* the array is with two elements in it. Each element should be read as
  13. 1st element is delimiter & 2nd element is csv fields
  14. */
  15. $csv_lists = array (
  16. array(',', 'water,fruit'),
  17. array(' ', 'water fruit'),
  18. array(' ', '"water" "fruit"'),
  19. array('\\', 'water\\"fruit"\\"air"'),
  20. array('\\', '"water"\\"fruit"\\"""'),
  21. );
  22. $filename = __DIR__ . '/fgetcsv_variation18.tmp';
  23. @unlink($filename);
  24. $file_modes = array ("r","rb", "rt", "r+", "r+b", "r+t",
  25. "a+", "a+b", "a+t",
  26. "w+", "w+b", "w+t",
  27. "x+", "x+b", "x+t");
  28. $loop_counter = 1;
  29. foreach ($csv_lists as $csv_list) {
  30. for($mode_counter = 0; $mode_counter < count($file_modes); $mode_counter++) {
  31. // create the file and add the content with has csv fields
  32. if ( strstr($file_modes[$mode_counter], "r") ) {
  33. $file_handle = fopen($filename, "w");
  34. } else {
  35. $file_handle = fopen($filename, $file_modes[$mode_counter] );
  36. }
  37. if ( !$file_handle ) {
  38. echo "Error: failed to create file $filename!\n";
  39. exit();
  40. }
  41. $delimiter = $csv_list[0];
  42. $csv_field = $csv_list[1];
  43. fwrite($file_handle, $csv_field . "\n");
  44. // write another line of text and a blank line
  45. // this will be used to test, if the fgetcsv() read more than a line and its
  46. // working when only a blank line is read
  47. fwrite($file_handle, "This is line of text without csv fields\n");
  48. fwrite($file_handle, "\n"); // blank line
  49. // close the file if the mode to be used is read mode and re-open using read mode
  50. // else rewind the file pointer to beginning of the file
  51. if ( strstr($file_modes[$mode_counter], "r" ) ) {
  52. fclose($file_handle);
  53. $file_handle = fopen($filename, $file_modes[$mode_counter]);
  54. } else {
  55. // rewind the file pointer to bof
  56. rewind($file_handle);
  57. }
  58. echo "\n-- Testing fgetcsv() with file opened using $file_modes[$mode_counter] mode --\n";
  59. // call fgetcsv() to parse csv fields
  60. // use different delimiter than existing in file
  61. fseek($file_handle, 0, SEEK_SET);
  62. $del = "+";
  63. var_dump( fgetcsv($file_handle, 1024, $del) );
  64. // check the file pointer position and if eof
  65. var_dump( ftell($file_handle) );
  66. var_dump( feof($file_handle) );
  67. // close the file
  68. fclose($file_handle);
  69. //delete file
  70. unlink($filename);
  71. } //end of mode loop
  72. } // end of foreach
  73. echo "Done\n";
  74. ?>
  75. --EXPECT--
  76. *** Testing fgetcsv() : with default enclosure and different delimiter ***
  77. -- Testing fgetcsv() with file opened using r mode --
  78. array(1) {
  79. [0]=>
  80. string(11) "water,fruit"
  81. }
  82. int(12)
  83. bool(false)
  84. -- Testing fgetcsv() with file opened using rb mode --
  85. array(1) {
  86. [0]=>
  87. string(11) "water,fruit"
  88. }
  89. int(12)
  90. bool(false)
  91. -- Testing fgetcsv() with file opened using rt mode --
  92. array(1) {
  93. [0]=>
  94. string(11) "water,fruit"
  95. }
  96. int(12)
  97. bool(false)
  98. -- Testing fgetcsv() with file opened using r+ mode --
  99. array(1) {
  100. [0]=>
  101. string(11) "water,fruit"
  102. }
  103. int(12)
  104. bool(false)
  105. -- Testing fgetcsv() with file opened using r+b mode --
  106. array(1) {
  107. [0]=>
  108. string(11) "water,fruit"
  109. }
  110. int(12)
  111. bool(false)
  112. -- Testing fgetcsv() with file opened using r+t mode --
  113. array(1) {
  114. [0]=>
  115. string(11) "water,fruit"
  116. }
  117. int(12)
  118. bool(false)
  119. -- Testing fgetcsv() with file opened using a+ mode --
  120. array(1) {
  121. [0]=>
  122. string(11) "water,fruit"
  123. }
  124. int(12)
  125. bool(false)
  126. -- Testing fgetcsv() with file opened using a+b mode --
  127. array(1) {
  128. [0]=>
  129. string(11) "water,fruit"
  130. }
  131. int(12)
  132. bool(false)
  133. -- Testing fgetcsv() with file opened using a+t mode --
  134. array(1) {
  135. [0]=>
  136. string(11) "water,fruit"
  137. }
  138. int(12)
  139. bool(false)
  140. -- Testing fgetcsv() with file opened using w+ mode --
  141. array(1) {
  142. [0]=>
  143. string(11) "water,fruit"
  144. }
  145. int(12)
  146. bool(false)
  147. -- Testing fgetcsv() with file opened using w+b mode --
  148. array(1) {
  149. [0]=>
  150. string(11) "water,fruit"
  151. }
  152. int(12)
  153. bool(false)
  154. -- Testing fgetcsv() with file opened using w+t mode --
  155. array(1) {
  156. [0]=>
  157. string(11) "water,fruit"
  158. }
  159. int(12)
  160. bool(false)
  161. -- Testing fgetcsv() with file opened using x+ mode --
  162. array(1) {
  163. [0]=>
  164. string(11) "water,fruit"
  165. }
  166. int(12)
  167. bool(false)
  168. -- Testing fgetcsv() with file opened using x+b mode --
  169. array(1) {
  170. [0]=>
  171. string(11) "water,fruit"
  172. }
  173. int(12)
  174. bool(false)
  175. -- Testing fgetcsv() with file opened using x+t mode --
  176. array(1) {
  177. [0]=>
  178. string(11) "water,fruit"
  179. }
  180. int(12)
  181. bool(false)
  182. -- Testing fgetcsv() with file opened using r mode --
  183. array(1) {
  184. [0]=>
  185. string(11) "water fruit"
  186. }
  187. int(12)
  188. bool(false)
  189. -- Testing fgetcsv() with file opened using rb mode --
  190. array(1) {
  191. [0]=>
  192. string(11) "water fruit"
  193. }
  194. int(12)
  195. bool(false)
  196. -- Testing fgetcsv() with file opened using rt mode --
  197. array(1) {
  198. [0]=>
  199. string(11) "water fruit"
  200. }
  201. int(12)
  202. bool(false)
  203. -- Testing fgetcsv() with file opened using r+ mode --
  204. array(1) {
  205. [0]=>
  206. string(11) "water fruit"
  207. }
  208. int(12)
  209. bool(false)
  210. -- Testing fgetcsv() with file opened using r+b mode --
  211. array(1) {
  212. [0]=>
  213. string(11) "water fruit"
  214. }
  215. int(12)
  216. bool(false)
  217. -- Testing fgetcsv() with file opened using r+t mode --
  218. array(1) {
  219. [0]=>
  220. string(11) "water fruit"
  221. }
  222. int(12)
  223. bool(false)
  224. -- Testing fgetcsv() with file opened using a+ mode --
  225. array(1) {
  226. [0]=>
  227. string(11) "water fruit"
  228. }
  229. int(12)
  230. bool(false)
  231. -- Testing fgetcsv() with file opened using a+b mode --
  232. array(1) {
  233. [0]=>
  234. string(11) "water fruit"
  235. }
  236. int(12)
  237. bool(false)
  238. -- Testing fgetcsv() with file opened using a+t mode --
  239. array(1) {
  240. [0]=>
  241. string(11) "water fruit"
  242. }
  243. int(12)
  244. bool(false)
  245. -- Testing fgetcsv() with file opened using w+ mode --
  246. array(1) {
  247. [0]=>
  248. string(11) "water fruit"
  249. }
  250. int(12)
  251. bool(false)
  252. -- Testing fgetcsv() with file opened using w+b mode --
  253. array(1) {
  254. [0]=>
  255. string(11) "water fruit"
  256. }
  257. int(12)
  258. bool(false)
  259. -- Testing fgetcsv() with file opened using w+t mode --
  260. array(1) {
  261. [0]=>
  262. string(11) "water fruit"
  263. }
  264. int(12)
  265. bool(false)
  266. -- Testing fgetcsv() with file opened using x+ mode --
  267. array(1) {
  268. [0]=>
  269. string(11) "water fruit"
  270. }
  271. int(12)
  272. bool(false)
  273. -- Testing fgetcsv() with file opened using x+b mode --
  274. array(1) {
  275. [0]=>
  276. string(11) "water fruit"
  277. }
  278. int(12)
  279. bool(false)
  280. -- Testing fgetcsv() with file opened using x+t mode --
  281. array(1) {
  282. [0]=>
  283. string(11) "water fruit"
  284. }
  285. int(12)
  286. bool(false)
  287. -- Testing fgetcsv() with file opened using r mode --
  288. array(1) {
  289. [0]=>
  290. string(13) "water "fruit""
  291. }
  292. int(16)
  293. bool(false)
  294. -- Testing fgetcsv() with file opened using rb mode --
  295. array(1) {
  296. [0]=>
  297. string(13) "water "fruit""
  298. }
  299. int(16)
  300. bool(false)
  301. -- Testing fgetcsv() with file opened using rt mode --
  302. array(1) {
  303. [0]=>
  304. string(13) "water "fruit""
  305. }
  306. int(16)
  307. bool(false)
  308. -- Testing fgetcsv() with file opened using r+ mode --
  309. array(1) {
  310. [0]=>
  311. string(13) "water "fruit""
  312. }
  313. int(16)
  314. bool(false)
  315. -- Testing fgetcsv() with file opened using r+b mode --
  316. array(1) {
  317. [0]=>
  318. string(13) "water "fruit""
  319. }
  320. int(16)
  321. bool(false)
  322. -- Testing fgetcsv() with file opened using r+t mode --
  323. array(1) {
  324. [0]=>
  325. string(13) "water "fruit""
  326. }
  327. int(16)
  328. bool(false)
  329. -- Testing fgetcsv() with file opened using a+ mode --
  330. array(1) {
  331. [0]=>
  332. string(13) "water "fruit""
  333. }
  334. int(16)
  335. bool(false)
  336. -- Testing fgetcsv() with file opened using a+b mode --
  337. array(1) {
  338. [0]=>
  339. string(13) "water "fruit""
  340. }
  341. int(16)
  342. bool(false)
  343. -- Testing fgetcsv() with file opened using a+t mode --
  344. array(1) {
  345. [0]=>
  346. string(13) "water "fruit""
  347. }
  348. int(16)
  349. bool(false)
  350. -- Testing fgetcsv() with file opened using w+ mode --
  351. array(1) {
  352. [0]=>
  353. string(13) "water "fruit""
  354. }
  355. int(16)
  356. bool(false)
  357. -- Testing fgetcsv() with file opened using w+b mode --
  358. array(1) {
  359. [0]=>
  360. string(13) "water "fruit""
  361. }
  362. int(16)
  363. bool(false)
  364. -- Testing fgetcsv() with file opened using w+t mode --
  365. array(1) {
  366. [0]=>
  367. string(13) "water "fruit""
  368. }
  369. int(16)
  370. bool(false)
  371. -- Testing fgetcsv() with file opened using x+ mode --
  372. array(1) {
  373. [0]=>
  374. string(13) "water "fruit""
  375. }
  376. int(16)
  377. bool(false)
  378. -- Testing fgetcsv() with file opened using x+b mode --
  379. array(1) {
  380. [0]=>
  381. string(13) "water "fruit""
  382. }
  383. int(16)
  384. bool(false)
  385. -- Testing fgetcsv() with file opened using x+t mode --
  386. array(1) {
  387. [0]=>
  388. string(13) "water "fruit""
  389. }
  390. int(16)
  391. bool(false)
  392. -- Testing fgetcsv() with file opened using r mode --
  393. array(1) {
  394. [0]=>
  395. string(19) "water\"fruit"\"air""
  396. }
  397. int(20)
  398. bool(false)
  399. -- Testing fgetcsv() with file opened using rb mode --
  400. array(1) {
  401. [0]=>
  402. string(19) "water\"fruit"\"air""
  403. }
  404. int(20)
  405. bool(false)
  406. -- Testing fgetcsv() with file opened using rt mode --
  407. array(1) {
  408. [0]=>
  409. string(19) "water\"fruit"\"air""
  410. }
  411. int(20)
  412. bool(false)
  413. -- Testing fgetcsv() with file opened using r+ mode --
  414. array(1) {
  415. [0]=>
  416. string(19) "water\"fruit"\"air""
  417. }
  418. int(20)
  419. bool(false)
  420. -- Testing fgetcsv() with file opened using r+b mode --
  421. array(1) {
  422. [0]=>
  423. string(19) "water\"fruit"\"air""
  424. }
  425. int(20)
  426. bool(false)
  427. -- Testing fgetcsv() with file opened using r+t mode --
  428. array(1) {
  429. [0]=>
  430. string(19) "water\"fruit"\"air""
  431. }
  432. int(20)
  433. bool(false)
  434. -- Testing fgetcsv() with file opened using a+ mode --
  435. array(1) {
  436. [0]=>
  437. string(19) "water\"fruit"\"air""
  438. }
  439. int(20)
  440. bool(false)
  441. -- Testing fgetcsv() with file opened using a+b mode --
  442. array(1) {
  443. [0]=>
  444. string(19) "water\"fruit"\"air""
  445. }
  446. int(20)
  447. bool(false)
  448. -- Testing fgetcsv() with file opened using a+t mode --
  449. array(1) {
  450. [0]=>
  451. string(19) "water\"fruit"\"air""
  452. }
  453. int(20)
  454. bool(false)
  455. -- Testing fgetcsv() with file opened using w+ mode --
  456. array(1) {
  457. [0]=>
  458. string(19) "water\"fruit"\"air""
  459. }
  460. int(20)
  461. bool(false)
  462. -- Testing fgetcsv() with file opened using w+b mode --
  463. array(1) {
  464. [0]=>
  465. string(19) "water\"fruit"\"air""
  466. }
  467. int(20)
  468. bool(false)
  469. -- Testing fgetcsv() with file opened using w+t mode --
  470. array(1) {
  471. [0]=>
  472. string(19) "water\"fruit"\"air""
  473. }
  474. int(20)
  475. bool(false)
  476. -- Testing fgetcsv() with file opened using x+ mode --
  477. array(1) {
  478. [0]=>
  479. string(19) "water\"fruit"\"air""
  480. }
  481. int(20)
  482. bool(false)
  483. -- Testing fgetcsv() with file opened using x+b mode --
  484. array(1) {
  485. [0]=>
  486. string(19) "water\"fruit"\"air""
  487. }
  488. int(20)
  489. bool(false)
  490. -- Testing fgetcsv() with file opened using x+t mode --
  491. array(1) {
  492. [0]=>
  493. string(19) "water\"fruit"\"air""
  494. }
  495. int(20)
  496. bool(false)
  497. -- Testing fgetcsv() with file opened using r mode --
  498. array(1) {
  499. [0]=>
  500. string(17) "water\"fruit"\""""
  501. }
  502. int(20)
  503. bool(false)
  504. -- Testing fgetcsv() with file opened using rb mode --
  505. array(1) {
  506. [0]=>
  507. string(17) "water\"fruit"\""""
  508. }
  509. int(20)
  510. bool(false)
  511. -- Testing fgetcsv() with file opened using rt mode --
  512. array(1) {
  513. [0]=>
  514. string(17) "water\"fruit"\""""
  515. }
  516. int(20)
  517. bool(false)
  518. -- Testing fgetcsv() with file opened using r+ mode --
  519. array(1) {
  520. [0]=>
  521. string(17) "water\"fruit"\""""
  522. }
  523. int(20)
  524. bool(false)
  525. -- Testing fgetcsv() with file opened using r+b mode --
  526. array(1) {
  527. [0]=>
  528. string(17) "water\"fruit"\""""
  529. }
  530. int(20)
  531. bool(false)
  532. -- Testing fgetcsv() with file opened using r+t mode --
  533. array(1) {
  534. [0]=>
  535. string(17) "water\"fruit"\""""
  536. }
  537. int(20)
  538. bool(false)
  539. -- Testing fgetcsv() with file opened using a+ mode --
  540. array(1) {
  541. [0]=>
  542. string(17) "water\"fruit"\""""
  543. }
  544. int(20)
  545. bool(false)
  546. -- Testing fgetcsv() with file opened using a+b mode --
  547. array(1) {
  548. [0]=>
  549. string(17) "water\"fruit"\""""
  550. }
  551. int(20)
  552. bool(false)
  553. -- Testing fgetcsv() with file opened using a+t mode --
  554. array(1) {
  555. [0]=>
  556. string(17) "water\"fruit"\""""
  557. }
  558. int(20)
  559. bool(false)
  560. -- Testing fgetcsv() with file opened using w+ mode --
  561. array(1) {
  562. [0]=>
  563. string(17) "water\"fruit"\""""
  564. }
  565. int(20)
  566. bool(false)
  567. -- Testing fgetcsv() with file opened using w+b mode --
  568. array(1) {
  569. [0]=>
  570. string(17) "water\"fruit"\""""
  571. }
  572. int(20)
  573. bool(false)
  574. -- Testing fgetcsv() with file opened using w+t mode --
  575. array(1) {
  576. [0]=>
  577. string(17) "water\"fruit"\""""
  578. }
  579. int(20)
  580. bool(false)
  581. -- Testing fgetcsv() with file opened using x+ mode --
  582. array(1) {
  583. [0]=>
  584. string(17) "water\"fruit"\""""
  585. }
  586. int(20)
  587. bool(false)
  588. -- Testing fgetcsv() with file opened using x+b mode --
  589. array(1) {
  590. [0]=>
  591. string(17) "water\"fruit"\""""
  592. }
  593. int(20)
  594. bool(false)
  595. -- Testing fgetcsv() with file opened using x+t mode --
  596. array(1) {
  597. [0]=>
  598. string(17) "water\"fruit"\""""
  599. }
  600. int(20)
  601. bool(false)
  602. Done