Skip to content

Latest commit

 

History

History
15 lines (12 loc) · 437 Bytes

0475.md

File metadata and controls

15 lines (12 loc) · 437 Bytes

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