I have this following serialized string received by a Laravel Controller from an ajax call:
"address=&city=&cp=&phone_domicile="
(it can be longer)
How can I convert it to a php Object or an Array using php or a Laravel helper function? to have this following:
address => ....,
city => .....,
phone_domicile => ....
Maybe it's an easy question but I can't figure out how to do it.