我想创建一个关联数组,但我得到了未定义的索引。找不到原因。我知道索引不存在,但我想用它来创建它。
foreach($lines as $line){
$number = explode(",",$line)[1];//string
$duration = explode(",",$line)[0];
$seconds= getSeconds($duration);
$phoneNumbersCalled[$number]+= $seconds;
}