fgetcsv_variation10.phpt 19 KB

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