Communities for your favorite technologies. Explore all Collectives
Stack Overflow for Teams is now called Stack Internal. Bring the best of human thought and AI automation together at your work.
Bring the best of human thought and AI automation together at your work. Learn more
Find centralized, trusted content and collaborate around the technologies you use most.
Stack Internal
Knowledge at work
Bring the best of human thought and AI automation together at your work.
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.