This is the result of my array:
array(3) {
[968]=>
string(12) "TRALALAA0"
[918]=>
string(23) "TRALALAA1"
[912]=>
string(66) "TRALALAA2"
}
I want that output would be:
array(3) {
['TRALALAA0']=>
string(12) "968"
['TRALALAA1']=>
string(23) "918"
['TRALALAA0']=>
string(66) "912"
}
Is there a function to do that stuff in PHP ?