I need to check the value of one of the fields in an array but I can not.
var_dump($array_exemplo);
array(1) {
[0]=>
array(3) {
["primeiro"]=>
string(1) "1"
["segundo"]=>
string(1) "2"
["terceiro"]=>
string(1) "3"
}
}
var_dump($array_exemplo["segundo"]);
Notice: Undefined index: second in ...