Skip to content
Advertisement

PHP: Undefined index even if it exists

It drives me crazy … I try to parse a csv file and there is a very strange behavior.

Here is the csv

JavaScript

Now the php code

JavaScript

And the output

JavaScript

The key “action” exists in $temp but $temp['action'] returns Undefined and array_key_exists returns false. I’ve tried with a different key name, but still the same. And absolutely no problem with the others keys.

What’s wrong with this ?

PS: line 110 is the print_r($temp['action']);

EDIT 1

If i add another empty field in the csv at the begining of each line, action display correctly

JavaScript

Advertisement

Answer

Probably there is some special character at the beginning of the first line and trim isn’t removing it.

Try to remove every non-word character this way:

JavaScript
User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement