Communities for your favorite technologies. Explore all Collectives
Ask questions, find answers and collaborate at work with Stack Overflow for Teams.
Ask questions, find answers and collaborate at work with Stack Overflow for Teams. Explore Teams
Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
I have a string category=45&format=1 that I want to convert into a key=value array.
category=45&format=1
Does anyone know if there is a quick way of doing this without having to write a function that explode's the & and then the =?
&
=
Since you're dealing with the URL query format: parse_str
parse_str
parse_str('category=45&format=1', $array);
http://php.net/parse_str
Add a comment
If it's a query string or doesn't contain special characters you can use parse_str.
Start asking to get answers
Find the answer to your question by asking.
Explore related questions
See similar questions with these tags.