function readCSV($csvFile){ $file_handle = fopen($csvFile, 'r'); while (!feof($file_handle) ) { $line_of_text[] = fgetcsv($file_handle, 1024); } fclose($file_handle); return $line_of_text; } 复制代 使用法: $csvFile = "test.csv";$csv = readCSV($csvFile);$a = csv[0][0]; // これにより、列 1 と行 1 の値が取得されます?> 复制代码 CSV、PHP