欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

读取 CSV 文件的PHP代码

程序员文章站 2022-05-09 10:21:24
...
  1. function readCSV($csvFile){
  2. $file_handle = fopen($csvFile, 'r');
  3. while (!feof($file_handle) ) {
  4. $line_of_text[] = fgetcsv($file_handle, 1024);
  5. }
  6. fclose($file_handle);
  7. return $line_of_text;
  8. }
复制代码

用法:

  1. $csvFile = "test.csv";
  2. $csv = readCSV($csvFile);
  3. $a = csv[0][0]; // This will get value of Column 1 & Row 1
  4. ?>
复制代码

CSV, PHP