What problem are you having exactly? You say that it only sets $country to a two-letter code for the last line, but is it printing out all of the codes before that?
This should be obvious, but if you're only having problems with the value of $country after the loop finishes, then you should realize that the $country variable is overwritten on each iteration of the loop, and would therefore only hold the value from the last iteration when the loop finishes.
If the problem is that your loop isn't printing each code, then that sounds like it's a data problem, and you would need to show us the values in your array in order to determine the problem.
One possible data problem you may have is this line:
$countryinp = array_filter($countryinp, 'trim');
I think your intent with this line is to apply the trim function to each element in the array, but that's not what array_filter does. The function of array_filter is to pass each element in an array to a callback function. That function examines the contents of the element, then returns true if the contents should be kept, or false if that element should be filtered out of the array.
When you pass trim to array_filter, the only thing that happens is that any array element which is empty, or only contains whitespace, will be removed. This is because after such elements are trimmed, they are empty. PHP interprets an empty string as false and removes it from the array.
This could cause issues with your if statements, because if $code contains, for example, "Afghanistan " (note the trailing space), then it wouldn't get caught by the if statement as the strings wouldn't match.
You would be much better off simply running the line $code = trim($code); at the beginning of your foreach loop.
Also, your code is a little bit ugly to me. If you're just going to check the same variable over and over (i.e. repeated if ($code == 'Value') statements), then you should really be using a switch statement instead:
switch ($code) {
case "Afghanistan":
$country = 'AF';
break;
case "Aland Islands":
$country ='AX';
break;
// repeat for other cases
default:
$country = $code;
}
var_dump($countryinp);before yourforeachto make sure it contains what you think it contains. – Frank Farmer Apr 16 '11 at 0:30array_walkand I've updated my answer to describe how this could be causing you issues. – AgentConundrum Apr 16 '11 at 1:26