i've got this array:
fffarray(2) {
[0]=>
array(1) {
["keyword1"]=>
string(17) "Software Engineer"
}
[3]=>
array(2) {
["keyword1"]=>
string(10) "Hampelmann"
["keyword2"]=>
string(17) "Software Engineer"
}
}
i want an output like
fffarray(1) {
["Software Engineer"]=>
int(2)
["Hampelmann"]=>
int(1)
}
I really tried my best but can't achieve this.
May you please help me.
Thanks