I am tring to create dinamically an associative array but I get undefined index. Cannot find the reason. I know the index doesn't exist, but I want to create it dinamically.
foreach($lines as $line){
$number = explode(",",$line)[1];//string
$duration = explode(",",$line)[0];
$seconds= getSeconds($duration);
$phoneNumbersCalled[$number]+= $seconds;
}