我有这个 csv 文件:
id,...MANY FIELDS,Gold
,020-008,20008,...MANY FIELDS...,34.5,21.49
出于某种原因,我将最后一个元素作为两个数组接收:
....
[24] => 2
)
Array
(
[0] => 149
)
这是我正在使用的代码...
if (($handle = fopen("test.csv", "r")) !== FALSE) {
while (($data = fgetcsv($handle, 1000, ",")) !== FALSE) {
print_r($data);
我真的不明白为什么会这样……