fgetcsv_variation15.phpt 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935
  1. --TEST--
  2. Test fgetcsv() : usage variations - with default enclosure
  3. --FILE--
  4. <?php
  5. /* Testing fgetcsv() to read a file when provided with default enclosure character */
  6. echo "*** Testing fgetcsv() : with default enclosure ***\n";
  7. /* the array is with two elements in it. Each element should be read as
  8. 1st element is delimiter & 2nd element is csv fields
  9. */
  10. $csv_lists = array (
  11. array(',', 'water,fruit'),
  12. array(' ', 'water fruit'),
  13. array(' ', '"water" "fruit"'),
  14. array('\\', 'water\\"fruit"\\"air"'),
  15. array('\\', '"water"\\"fruit"\\"""'),
  16. );
  17. $filename = __DIR__ . '/fgetcsv_variation15.tmp';
  18. @unlink($filename);
  19. $file_modes = array ("r","rb", "rt", "r+", "r+b", "r+t",
  20. "a+", "a+b", "a+t",
  21. "w+", "w+b", "w+t",
  22. "x+", "x+b", "x+t");
  23. $loop_counter = 1;
  24. foreach ($csv_lists as $csv_list) {
  25. for($mode_counter = 0; $mode_counter < count($file_modes); $mode_counter++) {
  26. // create the file and add the content with has csv fields
  27. if ( strstr($file_modes[$mode_counter], "r") ) {
  28. $file_handle = fopen($filename, "w");
  29. } else {
  30. $file_handle = fopen($filename, $file_modes[$mode_counter] );
  31. }
  32. if ( !$file_handle ) {
  33. echo "Error: failed to create file $filename!\n";
  34. exit();
  35. }
  36. $delimiter = $csv_list[0];
  37. $csv_field = $csv_list[1];
  38. fwrite($file_handle, $csv_field . "\n");
  39. // write another line of text and a blank line
  40. // this will be used to test, if the fgetcsv() read more than a line and its
  41. // working when only a blan line is read
  42. fwrite($file_handle, "This is line of text without csv fields\n");
  43. fwrite($file_handle, "\n"); // blank line
  44. // close the file if the mode to be used is read mode and re-open using read mode
  45. // else rewind the file pointer to beginning of the file
  46. if ( strstr($file_modes[$mode_counter], "r" ) ) {
  47. fclose($file_handle);
  48. $file_handle = fopen($filename, $file_modes[$mode_counter]);
  49. } else {
  50. // rewind the file pointer to bof
  51. rewind($file_handle);
  52. }
  53. echo "\n-- Testing fgetcsv() with file opened using $file_modes[$mode_counter] mode --\n";
  54. // call fgetcsv() to parse csv fields
  55. var_dump( fgetcsv($file_handle, 1024, $delimiter) );
  56. // check the file pointer position and if eof
  57. var_dump( ftell($file_handle) );
  58. var_dump( feof($file_handle) );
  59. // close the file
  60. fclose($file_handle);
  61. //delete file
  62. unlink($filename);
  63. } //end of mode loop
  64. } // end of foreach
  65. echo "Done\n";
  66. ?>
  67. --EXPECT--
  68. *** Testing fgetcsv() : with default enclosure ***
  69. -- Testing fgetcsv() with file opened using r mode --
  70. array(2) {
  71. [0]=>
  72. string(5) "water"
  73. [1]=>
  74. string(5) "fruit"
  75. }
  76. int(12)
  77. bool(false)
  78. -- Testing fgetcsv() with file opened using rb mode --
  79. array(2) {
  80. [0]=>
  81. string(5) "water"
  82. [1]=>
  83. string(5) "fruit"
  84. }
  85. int(12)
  86. bool(false)
  87. -- Testing fgetcsv() with file opened using rt mode --
  88. array(2) {
  89. [0]=>
  90. string(5) "water"
  91. [1]=>
  92. string(5) "fruit"
  93. }
  94. int(12)
  95. bool(false)
  96. -- Testing fgetcsv() with file opened using r+ mode --
  97. array(2) {
  98. [0]=>
  99. string(5) "water"
  100. [1]=>
  101. string(5) "fruit"
  102. }
  103. int(12)
  104. bool(false)
  105. -- Testing fgetcsv() with file opened using r+b mode --
  106. array(2) {
  107. [0]=>
  108. string(5) "water"
  109. [1]=>
  110. string(5) "fruit"
  111. }
  112. int(12)
  113. bool(false)
  114. -- Testing fgetcsv() with file opened using r+t mode --
  115. array(2) {
  116. [0]=>
  117. string(5) "water"
  118. [1]=>
  119. string(5) "fruit"
  120. }
  121. int(12)
  122. bool(false)
  123. -- Testing fgetcsv() with file opened using a+ mode --
  124. array(2) {
  125. [0]=>
  126. string(5) "water"
  127. [1]=>
  128. string(5) "fruit"
  129. }
  130. int(12)
  131. bool(false)
  132. -- Testing fgetcsv() with file opened using a+b mode --
  133. array(2) {
  134. [0]=>
  135. string(5) "water"
  136. [1]=>
  137. string(5) "fruit"
  138. }
  139. int(12)
  140. bool(false)
  141. -- Testing fgetcsv() with file opened using a+t mode --
  142. array(2) {
  143. [0]=>
  144. string(5) "water"
  145. [1]=>
  146. string(5) "fruit"
  147. }
  148. int(12)
  149. bool(false)
  150. -- Testing fgetcsv() with file opened using w+ mode --
  151. array(2) {
  152. [0]=>
  153. string(5) "water"
  154. [1]=>
  155. string(5) "fruit"
  156. }
  157. int(12)
  158. bool(false)
  159. -- Testing fgetcsv() with file opened using w+b mode --
  160. array(2) {
  161. [0]=>
  162. string(5) "water"
  163. [1]=>
  164. string(5) "fruit"
  165. }
  166. int(12)
  167. bool(false)
  168. -- Testing fgetcsv() with file opened using w+t mode --
  169. array(2) {
  170. [0]=>
  171. string(5) "water"
  172. [1]=>
  173. string(5) "fruit"
  174. }
  175. int(12)
  176. bool(false)
  177. -- Testing fgetcsv() with file opened using x+ mode --
  178. array(2) {
  179. [0]=>
  180. string(5) "water"
  181. [1]=>
  182. string(5) "fruit"
  183. }
  184. int(12)
  185. bool(false)
  186. -- Testing fgetcsv() with file opened using x+b mode --
  187. array(2) {
  188. [0]=>
  189. string(5) "water"
  190. [1]=>
  191. string(5) "fruit"
  192. }
  193. int(12)
  194. bool(false)
  195. -- Testing fgetcsv() with file opened using x+t mode --
  196. array(2) {
  197. [0]=>
  198. string(5) "water"
  199. [1]=>
  200. string(5) "fruit"
  201. }
  202. int(12)
  203. bool(false)
  204. -- Testing fgetcsv() with file opened using r mode --
  205. array(2) {
  206. [0]=>
  207. string(5) "water"
  208. [1]=>
  209. string(5) "fruit"
  210. }
  211. int(12)
  212. bool(false)
  213. -- Testing fgetcsv() with file opened using rb mode --
  214. array(2) {
  215. [0]=>
  216. string(5) "water"
  217. [1]=>
  218. string(5) "fruit"
  219. }
  220. int(12)
  221. bool(false)
  222. -- Testing fgetcsv() with file opened using rt mode --
  223. array(2) {
  224. [0]=>
  225. string(5) "water"
  226. [1]=>
  227. string(5) "fruit"
  228. }
  229. int(12)
  230. bool(false)
  231. -- Testing fgetcsv() with file opened using r+ mode --
  232. array(2) {
  233. [0]=>
  234. string(5) "water"
  235. [1]=>
  236. string(5) "fruit"
  237. }
  238. int(12)
  239. bool(false)
  240. -- Testing fgetcsv() with file opened using r+b mode --
  241. array(2) {
  242. [0]=>
  243. string(5) "water"
  244. [1]=>
  245. string(5) "fruit"
  246. }
  247. int(12)
  248. bool(false)
  249. -- Testing fgetcsv() with file opened using r+t mode --
  250. array(2) {
  251. [0]=>
  252. string(5) "water"
  253. [1]=>
  254. string(5) "fruit"
  255. }
  256. int(12)
  257. bool(false)
  258. -- Testing fgetcsv() with file opened using a+ mode --
  259. array(2) {
  260. [0]=>
  261. string(5) "water"
  262. [1]=>
  263. string(5) "fruit"
  264. }
  265. int(12)
  266. bool(false)
  267. -- Testing fgetcsv() with file opened using a+b mode --
  268. array(2) {
  269. [0]=>
  270. string(5) "water"
  271. [1]=>
  272. string(5) "fruit"
  273. }
  274. int(12)
  275. bool(false)
  276. -- Testing fgetcsv() with file opened using a+t mode --
  277. array(2) {
  278. [0]=>
  279. string(5) "water"
  280. [1]=>
  281. string(5) "fruit"
  282. }
  283. int(12)
  284. bool(false)
  285. -- Testing fgetcsv() with file opened using w+ mode --
  286. array(2) {
  287. [0]=>
  288. string(5) "water"
  289. [1]=>
  290. string(5) "fruit"
  291. }
  292. int(12)
  293. bool(false)
  294. -- Testing fgetcsv() with file opened using w+b mode --
  295. array(2) {
  296. [0]=>
  297. string(5) "water"
  298. [1]=>
  299. string(5) "fruit"
  300. }
  301. int(12)
  302. bool(false)
  303. -- Testing fgetcsv() with file opened using w+t mode --
  304. array(2) {
  305. [0]=>
  306. string(5) "water"
  307. [1]=>
  308. string(5) "fruit"
  309. }
  310. int(12)
  311. bool(false)
  312. -- Testing fgetcsv() with file opened using x+ mode --
  313. array(2) {
  314. [0]=>
  315. string(5) "water"
  316. [1]=>
  317. string(5) "fruit"
  318. }
  319. int(12)
  320. bool(false)
  321. -- Testing fgetcsv() with file opened using x+b mode --
  322. array(2) {
  323. [0]=>
  324. string(5) "water"
  325. [1]=>
  326. string(5) "fruit"
  327. }
  328. int(12)
  329. bool(false)
  330. -- Testing fgetcsv() with file opened using x+t mode --
  331. array(2) {
  332. [0]=>
  333. string(5) "water"
  334. [1]=>
  335. string(5) "fruit"
  336. }
  337. int(12)
  338. bool(false)
  339. -- Testing fgetcsv() with file opened using r mode --
  340. array(2) {
  341. [0]=>
  342. string(5) "water"
  343. [1]=>
  344. string(5) "fruit"
  345. }
  346. int(16)
  347. bool(false)
  348. -- Testing fgetcsv() with file opened using rb mode --
  349. array(2) {
  350. [0]=>
  351. string(5) "water"
  352. [1]=>
  353. string(5) "fruit"
  354. }
  355. int(16)
  356. bool(false)
  357. -- Testing fgetcsv() with file opened using rt mode --
  358. array(2) {
  359. [0]=>
  360. string(5) "water"
  361. [1]=>
  362. string(5) "fruit"
  363. }
  364. int(16)
  365. bool(false)
  366. -- Testing fgetcsv() with file opened using r+ mode --
  367. array(2) {
  368. [0]=>
  369. string(5) "water"
  370. [1]=>
  371. string(5) "fruit"
  372. }
  373. int(16)
  374. bool(false)
  375. -- Testing fgetcsv() with file opened using r+b mode --
  376. array(2) {
  377. [0]=>
  378. string(5) "water"
  379. [1]=>
  380. string(5) "fruit"
  381. }
  382. int(16)
  383. bool(false)
  384. -- Testing fgetcsv() with file opened using r+t mode --
  385. array(2) {
  386. [0]=>
  387. string(5) "water"
  388. [1]=>
  389. string(5) "fruit"
  390. }
  391. int(16)
  392. bool(false)
  393. -- Testing fgetcsv() with file opened using a+ mode --
  394. array(2) {
  395. [0]=>
  396. string(5) "water"
  397. [1]=>
  398. string(5) "fruit"
  399. }
  400. int(16)
  401. bool(false)
  402. -- Testing fgetcsv() with file opened using a+b mode --
  403. array(2) {
  404. [0]=>
  405. string(5) "water"
  406. [1]=>
  407. string(5) "fruit"
  408. }
  409. int(16)
  410. bool(false)
  411. -- Testing fgetcsv() with file opened using a+t mode --
  412. array(2) {
  413. [0]=>
  414. string(5) "water"
  415. [1]=>
  416. string(5) "fruit"
  417. }
  418. int(16)
  419. bool(false)
  420. -- Testing fgetcsv() with file opened using w+ mode --
  421. array(2) {
  422. [0]=>
  423. string(5) "water"
  424. [1]=>
  425. string(5) "fruit"
  426. }
  427. int(16)
  428. bool(false)
  429. -- Testing fgetcsv() with file opened using w+b mode --
  430. array(2) {
  431. [0]=>
  432. string(5) "water"
  433. [1]=>
  434. string(5) "fruit"
  435. }
  436. int(16)
  437. bool(false)
  438. -- Testing fgetcsv() with file opened using w+t mode --
  439. array(2) {
  440. [0]=>
  441. string(5) "water"
  442. [1]=>
  443. string(5) "fruit"
  444. }
  445. int(16)
  446. bool(false)
  447. -- Testing fgetcsv() with file opened using x+ mode --
  448. array(2) {
  449. [0]=>
  450. string(5) "water"
  451. [1]=>
  452. string(5) "fruit"
  453. }
  454. int(16)
  455. bool(false)
  456. -- Testing fgetcsv() with file opened using x+b mode --
  457. array(2) {
  458. [0]=>
  459. string(5) "water"
  460. [1]=>
  461. string(5) "fruit"
  462. }
  463. int(16)
  464. bool(false)
  465. -- Testing fgetcsv() with file opened using x+t mode --
  466. array(2) {
  467. [0]=>
  468. string(5) "water"
  469. [1]=>
  470. string(5) "fruit"
  471. }
  472. int(16)
  473. bool(false)
  474. -- Testing fgetcsv() with file opened using r mode --
  475. array(3) {
  476. [0]=>
  477. string(5) "water"
  478. [1]=>
  479. string(5) "fruit"
  480. [2]=>
  481. string(3) "air"
  482. }
  483. int(20)
  484. bool(false)
  485. -- Testing fgetcsv() with file opened using rb mode --
  486. array(3) {
  487. [0]=>
  488. string(5) "water"
  489. [1]=>
  490. string(5) "fruit"
  491. [2]=>
  492. string(3) "air"
  493. }
  494. int(20)
  495. bool(false)
  496. -- Testing fgetcsv() with file opened using rt mode --
  497. array(3) {
  498. [0]=>
  499. string(5) "water"
  500. [1]=>
  501. string(5) "fruit"
  502. [2]=>
  503. string(3) "air"
  504. }
  505. int(20)
  506. bool(false)
  507. -- Testing fgetcsv() with file opened using r+ mode --
  508. array(3) {
  509. [0]=>
  510. string(5) "water"
  511. [1]=>
  512. string(5) "fruit"
  513. [2]=>
  514. string(3) "air"
  515. }
  516. int(20)
  517. bool(false)
  518. -- Testing fgetcsv() with file opened using r+b mode --
  519. array(3) {
  520. [0]=>
  521. string(5) "water"
  522. [1]=>
  523. string(5) "fruit"
  524. [2]=>
  525. string(3) "air"
  526. }
  527. int(20)
  528. bool(false)
  529. -- Testing fgetcsv() with file opened using r+t mode --
  530. array(3) {
  531. [0]=>
  532. string(5) "water"
  533. [1]=>
  534. string(5) "fruit"
  535. [2]=>
  536. string(3) "air"
  537. }
  538. int(20)
  539. bool(false)
  540. -- Testing fgetcsv() with file opened using a+ mode --
  541. array(3) {
  542. [0]=>
  543. string(5) "water"
  544. [1]=>
  545. string(5) "fruit"
  546. [2]=>
  547. string(3) "air"
  548. }
  549. int(20)
  550. bool(false)
  551. -- Testing fgetcsv() with file opened using a+b mode --
  552. array(3) {
  553. [0]=>
  554. string(5) "water"
  555. [1]=>
  556. string(5) "fruit"
  557. [2]=>
  558. string(3) "air"
  559. }
  560. int(20)
  561. bool(false)
  562. -- Testing fgetcsv() with file opened using a+t mode --
  563. array(3) {
  564. [0]=>
  565. string(5) "water"
  566. [1]=>
  567. string(5) "fruit"
  568. [2]=>
  569. string(3) "air"
  570. }
  571. int(20)
  572. bool(false)
  573. -- Testing fgetcsv() with file opened using w+ mode --
  574. array(3) {
  575. [0]=>
  576. string(5) "water"
  577. [1]=>
  578. string(5) "fruit"
  579. [2]=>
  580. string(3) "air"
  581. }
  582. int(20)
  583. bool(false)
  584. -- Testing fgetcsv() with file opened using w+b mode --
  585. array(3) {
  586. [0]=>
  587. string(5) "water"
  588. [1]=>
  589. string(5) "fruit"
  590. [2]=>
  591. string(3) "air"
  592. }
  593. int(20)
  594. bool(false)
  595. -- Testing fgetcsv() with file opened using w+t mode --
  596. array(3) {
  597. [0]=>
  598. string(5) "water"
  599. [1]=>
  600. string(5) "fruit"
  601. [2]=>
  602. string(3) "air"
  603. }
  604. int(20)
  605. bool(false)
  606. -- Testing fgetcsv() with file opened using x+ mode --
  607. array(3) {
  608. [0]=>
  609. string(5) "water"
  610. [1]=>
  611. string(5) "fruit"
  612. [2]=>
  613. string(3) "air"
  614. }
  615. int(20)
  616. bool(false)
  617. -- Testing fgetcsv() with file opened using x+b mode --
  618. array(3) {
  619. [0]=>
  620. string(5) "water"
  621. [1]=>
  622. string(5) "fruit"
  623. [2]=>
  624. string(3) "air"
  625. }
  626. int(20)
  627. bool(false)
  628. -- Testing fgetcsv() with file opened using x+t mode --
  629. array(3) {
  630. [0]=>
  631. string(5) "water"
  632. [1]=>
  633. string(5) "fruit"
  634. [2]=>
  635. string(3) "air"
  636. }
  637. int(20)
  638. bool(false)
  639. -- Testing fgetcsv() with file opened using r mode --
  640. array(3) {
  641. [0]=>
  642. string(5) "water"
  643. [1]=>
  644. string(5) "fruit"
  645. [2]=>
  646. string(43) ""
  647. This is line of text without csv fields
  648. "
  649. }
  650. int(61)
  651. bool(true)
  652. -- Testing fgetcsv() with file opened using rb mode --
  653. array(3) {
  654. [0]=>
  655. string(5) "water"
  656. [1]=>
  657. string(5) "fruit"
  658. [2]=>
  659. string(43) ""
  660. This is line of text without csv fields
  661. "
  662. }
  663. int(61)
  664. bool(true)
  665. -- Testing fgetcsv() with file opened using rt mode --
  666. array(3) {
  667. [0]=>
  668. string(5) "water"
  669. [1]=>
  670. string(5) "fruit"
  671. [2]=>
  672. string(43) ""
  673. This is line of text without csv fields
  674. "
  675. }
  676. int(61)
  677. bool(true)
  678. -- Testing fgetcsv() with file opened using r+ mode --
  679. array(3) {
  680. [0]=>
  681. string(5) "water"
  682. [1]=>
  683. string(5) "fruit"
  684. [2]=>
  685. string(43) ""
  686. This is line of text without csv fields
  687. "
  688. }
  689. int(61)
  690. bool(true)
  691. -- Testing fgetcsv() with file opened using r+b mode --
  692. array(3) {
  693. [0]=>
  694. string(5) "water"
  695. [1]=>
  696. string(5) "fruit"
  697. [2]=>
  698. string(43) ""
  699. This is line of text without csv fields
  700. "
  701. }
  702. int(61)
  703. bool(true)
  704. -- Testing fgetcsv() with file opened using r+t mode --
  705. array(3) {
  706. [0]=>
  707. string(5) "water"
  708. [1]=>
  709. string(5) "fruit"
  710. [2]=>
  711. string(43) ""
  712. This is line of text without csv fields
  713. "
  714. }
  715. int(61)
  716. bool(true)
  717. -- Testing fgetcsv() with file opened using a+ mode --
  718. array(3) {
  719. [0]=>
  720. string(5) "water"
  721. [1]=>
  722. string(5) "fruit"
  723. [2]=>
  724. string(43) ""
  725. This is line of text without csv fields
  726. "
  727. }
  728. int(61)
  729. bool(true)
  730. -- Testing fgetcsv() with file opened using a+b mode --
  731. array(3) {
  732. [0]=>
  733. string(5) "water"
  734. [1]=>
  735. string(5) "fruit"
  736. [2]=>
  737. string(43) ""
  738. This is line of text without csv fields
  739. "
  740. }
  741. int(61)
  742. bool(true)
  743. -- Testing fgetcsv() with file opened using a+t mode --
  744. array(3) {
  745. [0]=>
  746. string(5) "water"
  747. [1]=>
  748. string(5) "fruit"
  749. [2]=>
  750. string(43) ""
  751. This is line of text without csv fields
  752. "
  753. }
  754. int(61)
  755. bool(true)
  756. -- Testing fgetcsv() with file opened using w+ mode --
  757. array(3) {
  758. [0]=>
  759. string(5) "water"
  760. [1]=>
  761. string(5) "fruit"
  762. [2]=>
  763. string(43) ""
  764. This is line of text without csv fields
  765. "
  766. }
  767. int(61)
  768. bool(true)
  769. -- Testing fgetcsv() with file opened using w+b mode --
  770. array(3) {
  771. [0]=>
  772. string(5) "water"
  773. [1]=>
  774. string(5) "fruit"
  775. [2]=>
  776. string(43) ""
  777. This is line of text without csv fields
  778. "
  779. }
  780. int(61)
  781. bool(true)
  782. -- Testing fgetcsv() with file opened using w+t mode --
  783. array(3) {
  784. [0]=>
  785. string(5) "water"
  786. [1]=>
  787. string(5) "fruit"
  788. [2]=>
  789. string(43) ""
  790. This is line of text without csv fields
  791. "
  792. }
  793. int(61)
  794. bool(true)
  795. -- Testing fgetcsv() with file opened using x+ mode --
  796. array(3) {
  797. [0]=>
  798. string(5) "water"
  799. [1]=>
  800. string(5) "fruit"
  801. [2]=>
  802. string(43) ""
  803. This is line of text without csv fields
  804. "
  805. }
  806. int(61)
  807. bool(true)
  808. -- Testing fgetcsv() with file opened using x+b mode --
  809. array(3) {
  810. [0]=>
  811. string(5) "water"
  812. [1]=>
  813. string(5) "fruit"
  814. [2]=>
  815. string(43) ""
  816. This is line of text without csv fields
  817. "
  818. }
  819. int(61)
  820. bool(true)
  821. -- Testing fgetcsv() with file opened using x+t mode --
  822. array(3) {
  823. [0]=>
  824. string(5) "water"
  825. [1]=>
  826. string(5) "fruit"
  827. [2]=>
  828. string(43) ""
  829. This is line of text without csv fields
  830. "
  831. }
  832. int(61)
  833. bool(true)
  834. Done