我正在尝试读取一个 csv 文件,然后将第一列和第 21 列存储在关联数组中,以使第 1 列成为键,第 21 列成为值。
稍后我想根据“键”提取记录。包含代码的 PHP 文件是 upload.php
$calls = array();
$file_handle = fopen($C1.".File.csv","r"); // $C1 is defined before.
//Just appending something to the file name. This file exists.
while (!feof($file_handle) ) {
$line= fgetcsv($file_handle, 1024);
$calls[$line[0]] = $line[20]; //Line 94 of this file
}
fclose($file_handle);
print_r($calls);
我收到这个错误
Undefined offset: 20 in upload.php on line 94
我哪里错了。