fgetcsv_variation2.phpt 21 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408
  1. --TEST--
  2. Test fgetcsv() : usage variations - with length as 0
  3. --FILE--
  4. <?php
  5. /* Testing fgetcsv() to rwad from a file with length argument equal to zero */
  6. echo "*** Testing fgetcsv() : with length as 0 ***\n";
  7. /* the array is with three elements in it. Each element should be read as
  8. 1st element is delimiter, 2nd element is enclosure
  9. and 3rd element is csv fields
  10. */
  11. $csv_lists = array (
  12. array(',', '"', '"water",fruit'),
  13. array(',', '"', '"water","fruit"'),
  14. array(' ', '^', '^water^ ^fruit^'),
  15. array(':', '&', '&water&:&fruit&'),
  16. array('=', '=', '=water===fruit='),
  17. array('-', '-', '-water--fruit-air'),
  18. array('-', '-', '-water---fruit---air-'),
  19. array(':', '&', '&""""&:&"&:,:":&,&:,,,,')
  20. );
  21. $filename = __DIR__ . '/fgetcsv_variation2.tmp';
  22. @unlink($filename);
  23. $file_modes = array ("r","rb", "rt", "r+", "r+b", "r+t",
  24. "a+", "a+b", "a+t",
  25. "w+", "w+b", "w+t",
  26. "x+", "x+b", "x+t");
  27. $loop_counter = 1;
  28. foreach ($csv_lists as $csv_list) {
  29. for($mode_counter = 0; $mode_counter < count($file_modes); $mode_counter++) {
  30. // create the file and add the content with has csv fields
  31. if ( strstr($file_modes[$mode_counter], "r") ) {
  32. $file_handle = fopen($filename, "w");
  33. } else {
  34. $file_handle = fopen($filename, $file_modes[$mode_counter] );
  35. }
  36. if ( !$file_handle ) {
  37. echo "Error: failed to create file $filename!\n";
  38. exit();
  39. }
  40. $delimiter = $csv_list[0];
  41. $enclosure = $csv_list[1];
  42. $csv_field = $csv_list[2];
  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 length as 0
  61. fseek($file_handle, 0, SEEK_SET);
  62. var_dump( fgetcsv($file_handle, 0, $delimiter, $enclosure) );
  63. // check the file pointer position and if eof
  64. var_dump( ftell($file_handle) );
  65. var_dump( feof($file_handle) );
  66. // close the file
  67. fclose($file_handle);
  68. //delete file
  69. unlink($filename);
  70. } //end of mode loop
  71. } // end of foreach
  72. echo "Done\n";
  73. ?>
  74. --EXPECT--
  75. *** Testing fgetcsv() : with length as 0 ***
  76. -- Testing fgetcsv() with file opened using r mode --
  77. array(2) {
  78. [0]=>
  79. string(5) "water"
  80. [1]=>
  81. string(5) "fruit"
  82. }
  83. int(14)
  84. bool(false)
  85. -- Testing fgetcsv() with file opened using rb mode --
  86. array(2) {
  87. [0]=>
  88. string(5) "water"
  89. [1]=>
  90. string(5) "fruit"
  91. }
  92. int(14)
  93. bool(false)
  94. -- Testing fgetcsv() with file opened using rt mode --
  95. array(2) {
  96. [0]=>
  97. string(5) "water"
  98. [1]=>
  99. string(5) "fruit"
  100. }
  101. int(14)
  102. bool(false)
  103. -- Testing fgetcsv() with file opened using r+ mode --
  104. array(2) {
  105. [0]=>
  106. string(5) "water"
  107. [1]=>
  108. string(5) "fruit"
  109. }
  110. int(14)
  111. bool(false)
  112. -- Testing fgetcsv() with file opened using r+b mode --
  113. array(2) {
  114. [0]=>
  115. string(5) "water"
  116. [1]=>
  117. string(5) "fruit"
  118. }
  119. int(14)
  120. bool(false)
  121. -- Testing fgetcsv() with file opened using r+t mode --
  122. array(2) {
  123. [0]=>
  124. string(5) "water"
  125. [1]=>
  126. string(5) "fruit"
  127. }
  128. int(14)
  129. bool(false)
  130. -- Testing fgetcsv() with file opened using a+ mode --
  131. array(2) {
  132. [0]=>
  133. string(5) "water"
  134. [1]=>
  135. string(5) "fruit"
  136. }
  137. int(14)
  138. bool(false)
  139. -- Testing fgetcsv() with file opened using a+b mode --
  140. array(2) {
  141. [0]=>
  142. string(5) "water"
  143. [1]=>
  144. string(5) "fruit"
  145. }
  146. int(14)
  147. bool(false)
  148. -- Testing fgetcsv() with file opened using a+t mode --
  149. array(2) {
  150. [0]=>
  151. string(5) "water"
  152. [1]=>
  153. string(5) "fruit"
  154. }
  155. int(14)
  156. bool(false)
  157. -- Testing fgetcsv() with file opened using w+ mode --
  158. array(2) {
  159. [0]=>
  160. string(5) "water"
  161. [1]=>
  162. string(5) "fruit"
  163. }
  164. int(14)
  165. bool(false)
  166. -- Testing fgetcsv() with file opened using w+b mode --
  167. array(2) {
  168. [0]=>
  169. string(5) "water"
  170. [1]=>
  171. string(5) "fruit"
  172. }
  173. int(14)
  174. bool(false)
  175. -- Testing fgetcsv() with file opened using w+t mode --
  176. array(2) {
  177. [0]=>
  178. string(5) "water"
  179. [1]=>
  180. string(5) "fruit"
  181. }
  182. int(14)
  183. bool(false)
  184. -- Testing fgetcsv() with file opened using x+ mode --
  185. array(2) {
  186. [0]=>
  187. string(5) "water"
  188. [1]=>
  189. string(5) "fruit"
  190. }
  191. int(14)
  192. bool(false)
  193. -- Testing fgetcsv() with file opened using x+b mode --
  194. array(2) {
  195. [0]=>
  196. string(5) "water"
  197. [1]=>
  198. string(5) "fruit"
  199. }
  200. int(14)
  201. bool(false)
  202. -- Testing fgetcsv() with file opened using x+t mode --
  203. array(2) {
  204. [0]=>
  205. string(5) "water"
  206. [1]=>
  207. string(5) "fruit"
  208. }
  209. int(14)
  210. bool(false)
  211. -- Testing fgetcsv() with file opened using r mode --
  212. array(2) {
  213. [0]=>
  214. string(5) "water"
  215. [1]=>
  216. string(5) "fruit"
  217. }
  218. int(16)
  219. bool(false)
  220. -- Testing fgetcsv() with file opened using rb mode --
  221. array(2) {
  222. [0]=>
  223. string(5) "water"
  224. [1]=>
  225. string(5) "fruit"
  226. }
  227. int(16)
  228. bool(false)
  229. -- Testing fgetcsv() with file opened using rt mode --
  230. array(2) {
  231. [0]=>
  232. string(5) "water"
  233. [1]=>
  234. string(5) "fruit"
  235. }
  236. int(16)
  237. bool(false)
  238. -- Testing fgetcsv() with file opened using r+ mode --
  239. array(2) {
  240. [0]=>
  241. string(5) "water"
  242. [1]=>
  243. string(5) "fruit"
  244. }
  245. int(16)
  246. bool(false)
  247. -- Testing fgetcsv() with file opened using r+b mode --
  248. array(2) {
  249. [0]=>
  250. string(5) "water"
  251. [1]=>
  252. string(5) "fruit"
  253. }
  254. int(16)
  255. bool(false)
  256. -- Testing fgetcsv() with file opened using r+t mode --
  257. array(2) {
  258. [0]=>
  259. string(5) "water"
  260. [1]=>
  261. string(5) "fruit"
  262. }
  263. int(16)
  264. bool(false)
  265. -- Testing fgetcsv() with file opened using a+ mode --
  266. array(2) {
  267. [0]=>
  268. string(5) "water"
  269. [1]=>
  270. string(5) "fruit"
  271. }
  272. int(16)
  273. bool(false)
  274. -- Testing fgetcsv() with file opened using a+b mode --
  275. array(2) {
  276. [0]=>
  277. string(5) "water"
  278. [1]=>
  279. string(5) "fruit"
  280. }
  281. int(16)
  282. bool(false)
  283. -- Testing fgetcsv() with file opened using a+t mode --
  284. array(2) {
  285. [0]=>
  286. string(5) "water"
  287. [1]=>
  288. string(5) "fruit"
  289. }
  290. int(16)
  291. bool(false)
  292. -- Testing fgetcsv() with file opened using w+ mode --
  293. array(2) {
  294. [0]=>
  295. string(5) "water"
  296. [1]=>
  297. string(5) "fruit"
  298. }
  299. int(16)
  300. bool(false)
  301. -- Testing fgetcsv() with file opened using w+b mode --
  302. array(2) {
  303. [0]=>
  304. string(5) "water"
  305. [1]=>
  306. string(5) "fruit"
  307. }
  308. int(16)
  309. bool(false)
  310. -- Testing fgetcsv() with file opened using w+t mode --
  311. array(2) {
  312. [0]=>
  313. string(5) "water"
  314. [1]=>
  315. string(5) "fruit"
  316. }
  317. int(16)
  318. bool(false)
  319. -- Testing fgetcsv() with file opened using x+ mode --
  320. array(2) {
  321. [0]=>
  322. string(5) "water"
  323. [1]=>
  324. string(5) "fruit"
  325. }
  326. int(16)
  327. bool(false)
  328. -- Testing fgetcsv() with file opened using x+b mode --
  329. array(2) {
  330. [0]=>
  331. string(5) "water"
  332. [1]=>
  333. string(5) "fruit"
  334. }
  335. int(16)
  336. bool(false)
  337. -- Testing fgetcsv() with file opened using x+t mode --
  338. array(2) {
  339. [0]=>
  340. string(5) "water"
  341. [1]=>
  342. string(5) "fruit"
  343. }
  344. int(16)
  345. bool(false)
  346. -- Testing fgetcsv() with file opened using r mode --
  347. array(2) {
  348. [0]=>
  349. string(5) "water"
  350. [1]=>
  351. string(5) "fruit"
  352. }
  353. int(16)
  354. bool(false)
  355. -- Testing fgetcsv() with file opened using rb mode --
  356. array(2) {
  357. [0]=>
  358. string(5) "water"
  359. [1]=>
  360. string(5) "fruit"
  361. }
  362. int(16)
  363. bool(false)
  364. -- Testing fgetcsv() with file opened using rt mode --
  365. array(2) {
  366. [0]=>
  367. string(5) "water"
  368. [1]=>
  369. string(5) "fruit"
  370. }
  371. int(16)
  372. bool(false)
  373. -- Testing fgetcsv() with file opened using r+ mode --
  374. array(2) {
  375. [0]=>
  376. string(5) "water"
  377. [1]=>
  378. string(5) "fruit"
  379. }
  380. int(16)
  381. bool(false)
  382. -- Testing fgetcsv() with file opened using r+b mode --
  383. array(2) {
  384. [0]=>
  385. string(5) "water"
  386. [1]=>
  387. string(5) "fruit"
  388. }
  389. int(16)
  390. bool(false)
  391. -- Testing fgetcsv() with file opened using r+t mode --
  392. array(2) {
  393. [0]=>
  394. string(5) "water"
  395. [1]=>
  396. string(5) "fruit"
  397. }
  398. int(16)
  399. bool(false)
  400. -- Testing fgetcsv() with file opened using a+ mode --
  401. array(2) {
  402. [0]=>
  403. string(5) "water"
  404. [1]=>
  405. string(5) "fruit"
  406. }
  407. int(16)
  408. bool(false)
  409. -- Testing fgetcsv() with file opened using a+b mode --
  410. array(2) {
  411. [0]=>
  412. string(5) "water"
  413. [1]=>
  414. string(5) "fruit"
  415. }
  416. int(16)
  417. bool(false)
  418. -- Testing fgetcsv() with file opened using a+t mode --
  419. array(2) {
  420. [0]=>
  421. string(5) "water"
  422. [1]=>
  423. string(5) "fruit"
  424. }
  425. int(16)
  426. bool(false)
  427. -- Testing fgetcsv() with file opened using w+ mode --
  428. array(2) {
  429. [0]=>
  430. string(5) "water"
  431. [1]=>
  432. string(5) "fruit"
  433. }
  434. int(16)
  435. bool(false)
  436. -- Testing fgetcsv() with file opened using w+b mode --
  437. array(2) {
  438. [0]=>
  439. string(5) "water"
  440. [1]=>
  441. string(5) "fruit"
  442. }
  443. int(16)
  444. bool(false)
  445. -- Testing fgetcsv() with file opened using w+t mode --
  446. array(2) {
  447. [0]=>
  448. string(5) "water"
  449. [1]=>
  450. string(5) "fruit"
  451. }
  452. int(16)
  453. bool(false)
  454. -- Testing fgetcsv() with file opened using x+ mode --
  455. array(2) {
  456. [0]=>
  457. string(5) "water"
  458. [1]=>
  459. string(5) "fruit"
  460. }
  461. int(16)
  462. bool(false)
  463. -- Testing fgetcsv() with file opened using x+b mode --
  464. array(2) {
  465. [0]=>
  466. string(5) "water"
  467. [1]=>
  468. string(5) "fruit"
  469. }
  470. int(16)
  471. bool(false)
  472. -- Testing fgetcsv() with file opened using x+t mode --
  473. array(2) {
  474. [0]=>
  475. string(5) "water"
  476. [1]=>
  477. string(5) "fruit"
  478. }
  479. int(16)
  480. bool(false)
  481. -- Testing fgetcsv() with file opened using r mode --
  482. array(2) {
  483. [0]=>
  484. string(5) "water"
  485. [1]=>
  486. string(5) "fruit"
  487. }
  488. int(16)
  489. bool(false)
  490. -- Testing fgetcsv() with file opened using rb mode --
  491. array(2) {
  492. [0]=>
  493. string(5) "water"
  494. [1]=>
  495. string(5) "fruit"
  496. }
  497. int(16)
  498. bool(false)
  499. -- Testing fgetcsv() with file opened using rt mode --
  500. array(2) {
  501. [0]=>
  502. string(5) "water"
  503. [1]=>
  504. string(5) "fruit"
  505. }
  506. int(16)
  507. bool(false)
  508. -- Testing fgetcsv() with file opened using r+ mode --
  509. array(2) {
  510. [0]=>
  511. string(5) "water"
  512. [1]=>
  513. string(5) "fruit"
  514. }
  515. int(16)
  516. bool(false)
  517. -- Testing fgetcsv() with file opened using r+b mode --
  518. array(2) {
  519. [0]=>
  520. string(5) "water"
  521. [1]=>
  522. string(5) "fruit"
  523. }
  524. int(16)
  525. bool(false)
  526. -- Testing fgetcsv() with file opened using r+t mode --
  527. array(2) {
  528. [0]=>
  529. string(5) "water"
  530. [1]=>
  531. string(5) "fruit"
  532. }
  533. int(16)
  534. bool(false)
  535. -- Testing fgetcsv() with file opened using a+ mode --
  536. array(2) {
  537. [0]=>
  538. string(5) "water"
  539. [1]=>
  540. string(5) "fruit"
  541. }
  542. int(16)
  543. bool(false)
  544. -- Testing fgetcsv() with file opened using a+b mode --
  545. array(2) {
  546. [0]=>
  547. string(5) "water"
  548. [1]=>
  549. string(5) "fruit"
  550. }
  551. int(16)
  552. bool(false)
  553. -- Testing fgetcsv() with file opened using a+t mode --
  554. array(2) {
  555. [0]=>
  556. string(5) "water"
  557. [1]=>
  558. string(5) "fruit"
  559. }
  560. int(16)
  561. bool(false)
  562. -- Testing fgetcsv() with file opened using w+ mode --
  563. array(2) {
  564. [0]=>
  565. string(5) "water"
  566. [1]=>
  567. string(5) "fruit"
  568. }
  569. int(16)
  570. bool(false)
  571. -- Testing fgetcsv() with file opened using w+b mode --
  572. array(2) {
  573. [0]=>
  574. string(5) "water"
  575. [1]=>
  576. string(5) "fruit"
  577. }
  578. int(16)
  579. bool(false)
  580. -- Testing fgetcsv() with file opened using w+t mode --
  581. array(2) {
  582. [0]=>
  583. string(5) "water"
  584. [1]=>
  585. string(5) "fruit"
  586. }
  587. int(16)
  588. bool(false)
  589. -- Testing fgetcsv() with file opened using x+ mode --
  590. array(2) {
  591. [0]=>
  592. string(5) "water"
  593. [1]=>
  594. string(5) "fruit"
  595. }
  596. int(16)
  597. bool(false)
  598. -- Testing fgetcsv() with file opened using x+b mode --
  599. array(2) {
  600. [0]=>
  601. string(5) "water"
  602. [1]=>
  603. string(5) "fruit"
  604. }
  605. int(16)
  606. bool(false)
  607. -- Testing fgetcsv() with file opened using x+t mode --
  608. array(2) {
  609. [0]=>
  610. string(5) "water"
  611. [1]=>
  612. string(5) "fruit"
  613. }
  614. int(16)
  615. bool(false)
  616. -- Testing fgetcsv() with file opened using r mode --
  617. array(2) {
  618. [0]=>
  619. string(11) "water=fruit"
  620. [1]=>
  621. string(0) ""
  622. }
  623. int(16)
  624. bool(false)
  625. -- Testing fgetcsv() with file opened using rb mode --
  626. array(2) {
  627. [0]=>
  628. string(11) "water=fruit"
  629. [1]=>
  630. string(0) ""
  631. }
  632. int(16)
  633. bool(false)
  634. -- Testing fgetcsv() with file opened using rt mode --
  635. array(2) {
  636. [0]=>
  637. string(11) "water=fruit"
  638. [1]=>
  639. string(0) ""
  640. }
  641. int(16)
  642. bool(false)
  643. -- Testing fgetcsv() with file opened using r+ mode --
  644. array(2) {
  645. [0]=>
  646. string(11) "water=fruit"
  647. [1]=>
  648. string(0) ""
  649. }
  650. int(16)
  651. bool(false)
  652. -- Testing fgetcsv() with file opened using r+b mode --
  653. array(2) {
  654. [0]=>
  655. string(11) "water=fruit"
  656. [1]=>
  657. string(0) ""
  658. }
  659. int(16)
  660. bool(false)
  661. -- Testing fgetcsv() with file opened using r+t mode --
  662. array(2) {
  663. [0]=>
  664. string(11) "water=fruit"
  665. [1]=>
  666. string(0) ""
  667. }
  668. int(16)
  669. bool(false)
  670. -- Testing fgetcsv() with file opened using a+ mode --
  671. array(2) {
  672. [0]=>
  673. string(11) "water=fruit"
  674. [1]=>
  675. string(0) ""
  676. }
  677. int(16)
  678. bool(false)
  679. -- Testing fgetcsv() with file opened using a+b mode --
  680. array(2) {
  681. [0]=>
  682. string(11) "water=fruit"
  683. [1]=>
  684. string(0) ""
  685. }
  686. int(16)
  687. bool(false)
  688. -- Testing fgetcsv() with file opened using a+t mode --
  689. array(2) {
  690. [0]=>
  691. string(11) "water=fruit"
  692. [1]=>
  693. string(0) ""
  694. }
  695. int(16)
  696. bool(false)
  697. -- Testing fgetcsv() with file opened using w+ mode --
  698. array(2) {
  699. [0]=>
  700. string(11) "water=fruit"
  701. [1]=>
  702. string(0) ""
  703. }
  704. int(16)
  705. bool(false)
  706. -- Testing fgetcsv() with file opened using w+b mode --
  707. array(2) {
  708. [0]=>
  709. string(11) "water=fruit"
  710. [1]=>
  711. string(0) ""
  712. }
  713. int(16)
  714. bool(false)
  715. -- Testing fgetcsv() with file opened using w+t mode --
  716. array(2) {
  717. [0]=>
  718. string(11) "water=fruit"
  719. [1]=>
  720. string(0) ""
  721. }
  722. int(16)
  723. bool(false)
  724. -- Testing fgetcsv() with file opened using x+ mode --
  725. array(2) {
  726. [0]=>
  727. string(11) "water=fruit"
  728. [1]=>
  729. string(0) ""
  730. }
  731. int(16)
  732. bool(false)
  733. -- Testing fgetcsv() with file opened using x+b mode --
  734. array(2) {
  735. [0]=>
  736. string(11) "water=fruit"
  737. [1]=>
  738. string(0) ""
  739. }
  740. int(16)
  741. bool(false)
  742. -- Testing fgetcsv() with file opened using x+t mode --
  743. array(2) {
  744. [0]=>
  745. string(11) "water=fruit"
  746. [1]=>
  747. string(0) ""
  748. }
  749. int(16)
  750. bool(false)
  751. -- Testing fgetcsv() with file opened using r mode --
  752. array(1) {
  753. [0]=>
  754. string(14) "water-fruitair"
  755. }
  756. int(18)
  757. bool(false)
  758. -- Testing fgetcsv() with file opened using rb mode --
  759. array(1) {
  760. [0]=>
  761. string(14) "water-fruitair"
  762. }
  763. int(18)
  764. bool(false)
  765. -- Testing fgetcsv() with file opened using rt mode --
  766. array(1) {
  767. [0]=>
  768. string(14) "water-fruitair"
  769. }
  770. int(18)
  771. bool(false)
  772. -- Testing fgetcsv() with file opened using r+ mode --
  773. array(1) {
  774. [0]=>
  775. string(14) "water-fruitair"
  776. }
  777. int(18)
  778. bool(false)
  779. -- Testing fgetcsv() with file opened using r+b mode --
  780. array(1) {
  781. [0]=>
  782. string(14) "water-fruitair"
  783. }
  784. int(18)
  785. bool(false)
  786. -- Testing fgetcsv() with file opened using r+t mode --
  787. array(1) {
  788. [0]=>
  789. string(14) "water-fruitair"
  790. }
  791. int(18)
  792. bool(false)
  793. -- Testing fgetcsv() with file opened using a+ mode --
  794. array(1) {
  795. [0]=>
  796. string(14) "water-fruitair"
  797. }
  798. int(18)
  799. bool(false)
  800. -- Testing fgetcsv() with file opened using a+b mode --
  801. array(1) {
  802. [0]=>
  803. string(14) "water-fruitair"
  804. }
  805. int(18)
  806. bool(false)
  807. -- Testing fgetcsv() with file opened using a+t mode --
  808. array(1) {
  809. [0]=>
  810. string(14) "water-fruitair"
  811. }
  812. int(18)
  813. bool(false)
  814. -- Testing fgetcsv() with file opened using w+ mode --
  815. array(1) {
  816. [0]=>
  817. string(14) "water-fruitair"
  818. }
  819. int(18)
  820. bool(false)
  821. -- Testing fgetcsv() with file opened using w+b mode --
  822. array(1) {
  823. [0]=>
  824. string(14) "water-fruitair"
  825. }
  826. int(18)
  827. bool(false)
  828. -- Testing fgetcsv() with file opened using w+t mode --
  829. array(1) {
  830. [0]=>
  831. string(14) "water-fruitair"
  832. }
  833. int(18)
  834. bool(false)
  835. -- Testing fgetcsv() with file opened using x+ mode --
  836. array(1) {
  837. [0]=>
  838. string(14) "water-fruitair"
  839. }
  840. int(18)
  841. bool(false)
  842. -- Testing fgetcsv() with file opened using x+b mode --
  843. array(1) {
  844. [0]=>
  845. string(14) "water-fruitair"
  846. }
  847. int(18)
  848. bool(false)
  849. -- Testing fgetcsv() with file opened using x+t mode --
  850. array(1) {
  851. [0]=>
  852. string(14) "water-fruitair"
  853. }
  854. int(18)
  855. bool(false)
  856. -- Testing fgetcsv() with file opened using r mode --
  857. array(3) {
  858. [0]=>
  859. string(11) "water-fruit"
  860. [1]=>
  861. string(3) "air"
  862. [2]=>
  863. string(0) ""
  864. }
  865. int(22)
  866. bool(false)
  867. -- Testing fgetcsv() with file opened using rb mode --
  868. array(3) {
  869. [0]=>
  870. string(11) "water-fruit"
  871. [1]=>
  872. string(3) "air"
  873. [2]=>
  874. string(0) ""
  875. }
  876. int(22)
  877. bool(false)
  878. -- Testing fgetcsv() with file opened using rt mode --
  879. array(3) {
  880. [0]=>
  881. string(11) "water-fruit"
  882. [1]=>
  883. string(3) "air"
  884. [2]=>
  885. string(0) ""
  886. }
  887. int(22)
  888. bool(false)
  889. -- Testing fgetcsv() with file opened using r+ mode --
  890. array(3) {
  891. [0]=>
  892. string(11) "water-fruit"
  893. [1]=>
  894. string(3) "air"
  895. [2]=>
  896. string(0) ""
  897. }
  898. int(22)
  899. bool(false)
  900. -- Testing fgetcsv() with file opened using r+b mode --
  901. array(3) {
  902. [0]=>
  903. string(11) "water-fruit"
  904. [1]=>
  905. string(3) "air"
  906. [2]=>
  907. string(0) ""
  908. }
  909. int(22)
  910. bool(false)
  911. -- Testing fgetcsv() with file opened using r+t mode --
  912. array(3) {
  913. [0]=>
  914. string(11) "water-fruit"
  915. [1]=>
  916. string(3) "air"
  917. [2]=>
  918. string(0) ""
  919. }
  920. int(22)
  921. bool(false)
  922. -- Testing fgetcsv() with file opened using a+ mode --
  923. array(3) {
  924. [0]=>
  925. string(11) "water-fruit"
  926. [1]=>
  927. string(3) "air"
  928. [2]=>
  929. string(0) ""
  930. }
  931. int(22)
  932. bool(false)
  933. -- Testing fgetcsv() with file opened using a+b mode --
  934. array(3) {
  935. [0]=>
  936. string(11) "water-fruit"
  937. [1]=>
  938. string(3) "air"
  939. [2]=>
  940. string(0) ""
  941. }
  942. int(22)
  943. bool(false)
  944. -- Testing fgetcsv() with file opened using a+t mode --
  945. array(3) {
  946. [0]=>
  947. string(11) "water-fruit"
  948. [1]=>
  949. string(3) "air"
  950. [2]=>
  951. string(0) ""
  952. }
  953. int(22)
  954. bool(false)
  955. -- Testing fgetcsv() with file opened using w+ mode --
  956. array(3) {
  957. [0]=>
  958. string(11) "water-fruit"
  959. [1]=>
  960. string(3) "air"
  961. [2]=>
  962. string(0) ""
  963. }
  964. int(22)
  965. bool(false)
  966. -- Testing fgetcsv() with file opened using w+b mode --
  967. array(3) {
  968. [0]=>
  969. string(11) "water-fruit"
  970. [1]=>
  971. string(3) "air"
  972. [2]=>
  973. string(0) ""
  974. }
  975. int(22)
  976. bool(false)
  977. -- Testing fgetcsv() with file opened using w+t mode --
  978. array(3) {
  979. [0]=>
  980. string(11) "water-fruit"
  981. [1]=>
  982. string(3) "air"
  983. [2]=>
  984. string(0) ""
  985. }
  986. int(22)
  987. bool(false)
  988. -- Testing fgetcsv() with file opened using x+ mode --
  989. array(3) {
  990. [0]=>
  991. string(11) "water-fruit"
  992. [1]=>
  993. string(3) "air"
  994. [2]=>
  995. string(0) ""
  996. }
  997. int(22)
  998. bool(false)
  999. -- Testing fgetcsv() with file opened using x+b mode --
  1000. array(3) {
  1001. [0]=>
  1002. string(11) "water-fruit"
  1003. [1]=>
  1004. string(3) "air"
  1005. [2]=>
  1006. string(0) ""
  1007. }
  1008. int(22)
  1009. bool(false)
  1010. -- Testing fgetcsv() with file opened using x+t mode --
  1011. array(3) {
  1012. [0]=>
  1013. string(11) "water-fruit"
  1014. [1]=>
  1015. string(3) "air"
  1016. [2]=>
  1017. string(0) ""
  1018. }
  1019. int(22)
  1020. bool(false)
  1021. -- Testing fgetcsv() with file opened using r mode --
  1022. array(6) {
  1023. [0]=>
  1024. string(4) """"""
  1025. [1]=>
  1026. string(1) """
  1027. [2]=>
  1028. string(1) ","
  1029. [3]=>
  1030. string(1) """
  1031. [4]=>
  1032. string(1) ","
  1033. [5]=>
  1034. string(4) ",,,,"
  1035. }
  1036. int(24)
  1037. bool(false)
  1038. -- Testing fgetcsv() with file opened using rb mode --
  1039. array(6) {
  1040. [0]=>
  1041. string(4) """"""
  1042. [1]=>
  1043. string(1) """
  1044. [2]=>
  1045. string(1) ","
  1046. [3]=>
  1047. string(1) """
  1048. [4]=>
  1049. string(1) ","
  1050. [5]=>
  1051. string(4) ",,,,"
  1052. }
  1053. int(24)
  1054. bool(false)
  1055. -- Testing fgetcsv() with file opened using rt mode --
  1056. array(6) {
  1057. [0]=>
  1058. string(4) """"""
  1059. [1]=>
  1060. string(1) """
  1061. [2]=>
  1062. string(1) ","
  1063. [3]=>
  1064. string(1) """
  1065. [4]=>
  1066. string(1) ","
  1067. [5]=>
  1068. string(4) ",,,,"
  1069. }
  1070. int(24)
  1071. bool(false)
  1072. -- Testing fgetcsv() with file opened using r+ mode --
  1073. array(6) {
  1074. [0]=>
  1075. string(4) """"""
  1076. [1]=>
  1077. string(1) """
  1078. [2]=>
  1079. string(1) ","
  1080. [3]=>
  1081. string(1) """
  1082. [4]=>
  1083. string(1) ","
  1084. [5]=>
  1085. string(4) ",,,,"
  1086. }
  1087. int(24)
  1088. bool(false)
  1089. -- Testing fgetcsv() with file opened using r+b mode --
  1090. array(6) {
  1091. [0]=>
  1092. string(4) """"""
  1093. [1]=>
  1094. string(1) """
  1095. [2]=>
  1096. string(1) ","
  1097. [3]=>
  1098. string(1) """
  1099. [4]=>
  1100. string(1) ","
  1101. [5]=>
  1102. string(4) ",,,,"
  1103. }
  1104. int(24)
  1105. bool(false)
  1106. -- Testing fgetcsv() with file opened using r+t mode --
  1107. array(6) {
  1108. [0]=>
  1109. string(4) """"""
  1110. [1]=>
  1111. string(1) """
  1112. [2]=>
  1113. string(1) ","
  1114. [3]=>
  1115. string(1) """
  1116. [4]=>
  1117. string(1) ","
  1118. [5]=>
  1119. string(4) ",,,,"
  1120. }
  1121. int(24)
  1122. bool(false)
  1123. -- Testing fgetcsv() with file opened using a+ mode --
  1124. array(6) {
  1125. [0]=>
  1126. string(4) """"""
  1127. [1]=>
  1128. string(1) """
  1129. [2]=>
  1130. string(1) ","
  1131. [3]=>
  1132. string(1) """
  1133. [4]=>
  1134. string(1) ","
  1135. [5]=>
  1136. string(4) ",,,,"
  1137. }
  1138. int(24)
  1139. bool(false)
  1140. -- Testing fgetcsv() with file opened using a+b mode --
  1141. array(6) {
  1142. [0]=>
  1143. string(4) """"""
  1144. [1]=>
  1145. string(1) """
  1146. [2]=>
  1147. string(1) ","
  1148. [3]=>
  1149. string(1) """
  1150. [4]=>
  1151. string(1) ","
  1152. [5]=>
  1153. string(4) ",,,,"
  1154. }
  1155. int(24)
  1156. bool(false)
  1157. -- Testing fgetcsv() with file opened using a+t mode --
  1158. array(6) {
  1159. [0]=>
  1160. string(4) """"""
  1161. [1]=>
  1162. string(1) """
  1163. [2]=>
  1164. string(1) ","
  1165. [3]=>
  1166. string(1) """
  1167. [4]=>
  1168. string(1) ","
  1169. [5]=>
  1170. string(4) ",,,,"
  1171. }
  1172. int(24)
  1173. bool(false)
  1174. -- Testing fgetcsv() with file opened using w+ mode --
  1175. array(6) {
  1176. [0]=>
  1177. string(4) """"""
  1178. [1]=>
  1179. string(1) """
  1180. [2]=>
  1181. string(1) ","
  1182. [3]=>
  1183. string(1) """
  1184. [4]=>
  1185. string(1) ","
  1186. [5]=>
  1187. string(4) ",,,,"
  1188. }
  1189. int(24)
  1190. bool(false)
  1191. -- Testing fgetcsv() with file opened using w+b mode --
  1192. array(6) {
  1193. [0]=>
  1194. string(4) """"""
  1195. [1]=>
  1196. string(1) """
  1197. [2]=>
  1198. string(1) ","
  1199. [3]=>
  1200. string(1) """
  1201. [4]=>
  1202. string(1) ","
  1203. [5]=>
  1204. string(4) ",,,,"
  1205. }
  1206. int(24)
  1207. bool(false)
  1208. -- Testing fgetcsv() with file opened using w+t mode --
  1209. array(6) {
  1210. [0]=>
  1211. string(4) """"""
  1212. [1]=>
  1213. string(1) """
  1214. [2]=>
  1215. string(1) ","
  1216. [3]=>
  1217. string(1) """
  1218. [4]=>
  1219. string(1) ","
  1220. [5]=>
  1221. string(4) ",,,,"
  1222. }
  1223. int(24)
  1224. bool(false)
  1225. -- Testing fgetcsv() with file opened using x+ mode --
  1226. array(6) {
  1227. [0]=>
  1228. string(4) """"""
  1229. [1]=>
  1230. string(1) """
  1231. [2]=>
  1232. string(1) ","
  1233. [3]=>
  1234. string(1) """
  1235. [4]=>
  1236. string(1) ","
  1237. [5]=>
  1238. string(4) ",,,,"
  1239. }
  1240. int(24)
  1241. bool(false)
  1242. -- Testing fgetcsv() with file opened using x+b mode --
  1243. array(6) {
  1244. [0]=>
  1245. string(4) """"""
  1246. [1]=>
  1247. string(1) """
  1248. [2]=>
  1249. string(1) ","
  1250. [3]=>
  1251. string(1) """
  1252. [4]=>
  1253. string(1) ","
  1254. [5]=>
  1255. string(4) ",,,,"
  1256. }
  1257. int(24)
  1258. bool(false)
  1259. -- Testing fgetcsv() with file opened using x+t mode --
  1260. array(6) {
  1261. [0]=>
  1262. string(4) """"""
  1263. [1]=>
  1264. string(1) """
  1265. [2]=>
  1266. string(1) ","
  1267. [3]=>
  1268. string(1) """
  1269. [4]=>
  1270. string(1) ","
  1271. [5]=>
  1272. string(4) ",,,,"
  1273. }
  1274. int(24)
  1275. bool(false)
  1276. Done