<<< Previous question <<< Question ID#0475.md >>> Next question >>>
How would you efficiently extract data from a csv file which is several gigabytes in size?
- A) fopen() and fgetcsv()
- B) fopen(), fgets() and explode()
- C) Use a custom stream wrapper
- D) file_get_contents() and explode()
Answer
Answer: A, B