当前位置:Gxlcms > PHP教程 > 读取CSV文件的PHP代码

读取CSV文件的PHP代码

时间:2021-07-01 10:21:17 帮助过:4人阅读

  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

人气教程排行