I think this isn't supposed to happen, but I can't find why this isn't working. I'm checking user input for duplicate choices. $into_fields_count is an array of database fields mapped to the number of times selected by the user (db field => count), $into_fields_dupes gathers the duplicates.
foreach ( $into_fields_count as $field => $count )
{
if ( $count > 1 ) $into_fields_dupes[$field] = $count;
}
if ( $into_fields_dupes )
{
// construct error message
$error = ERR_MAP_DUPLICATES;
foreach ( $into_fields_dupes as $field => $count )
{
$error .= "\n" . 'Datenbankfeld "' . $artikel_fields[$field] . '" wurde ' . $count . ' mal gewählt.';
}
$error .= "\nBitte korrigieren Sie den Fehler vor dem Import!";
throw new Exception($error);
}
The problem is using the same variable $field in both foreach arrays. In the second loop the attempt to get the value for $artikel_fields[$field] throws up the notice
Notice: Undefined index: bestell_nr in /my/file/path...
However, testing for $artikel_fields['bestell_nr'] after this code does find the key. Obviously the variable contains the right string in the questionable line.
I can fix this very easily by changing the variable name in the second loop, but I want to get my head around what's happening here. Can you tell me why the code doesn't work?
var_dump($field)show? – Marc B Jun 16 '11 at 17:16