1
Good afternoon,
would like to convert a string into a non-associative array in PHP, functions like json_encode/json_encode are not working properly.
String:
word = '{"world":["EC","Supply"],"regional":["CSC","Regional RJ/Verticalized"],"entityAgrupada":["G&G","BSA - Graphic"],"unit":["GGI","BSA - Graphic"],"area":null};
I’m trying to get something like:
[0=>["EC","Supply"],1=>["CSC","Regional RJ/Verticalized"],2=>["G&G","BSA - Graphic"],3=>["GGI","BSA - Graphic"]]
Thank you in advance for your attention.