vote up 4 vote down star
1

Hi,

I'm looking for the name of the PHP function to build a query string from an array of key value pairs. Please note, I am looking for the built in PHP function to do this, not a homebrew one (thats all a google search seems to return). There is one I just can't remeber it's name or find it on php.net. IIRC it's name isn't that intuitive.

Robin

flag

3 Answers

vote up 17 vote down check

Your looking for http_build_query().

link|flag
Yeah, that's the one. – rmbarnes Dec 30 '08 at 17:00
Wish I'd known about that function a long time ago. Heh. – ceejayoz Dec 30 '08 at 17:17
vote up 0 vote down

Implode will combine an array into a string for you, but to make an SQL query out a kay/value pair you'll have to write your own function.

link|flag
Tried that but it won't work. I'm trying to build an http query string which requires both the keys and the values from the array, implode can't do this. – rmbarnes Dec 30 '08 at 17:00
I see, wasn't sure if you meant an SQL query string or a http query string. – Click Upvote Dec 30 '08 at 21:05
vote up 0 vote down

I'm not aware of a builtin function, but there is the PECL class http://uk.php.net/manual/en/class.httpquerystring.php

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.