vote up 3 vote down star

I'm looking for a fast way to turn an associative array in to a string. Typical structure would be like a URL query string but with customizable separators so I can use '&' for xhtml links or '&' otherwise.

My first inclination is to use foreach but since my method could be called many times in one request I fear it might be too slow.

<?php
$Amp = $IsXhtml ? '&amp;' : '&';
$Parameters = array('Action' => 'ShowList', 'Page' => '2');
$QueryString = '';
foreach ($Parameters as $Key => $Value)
        $QueryString .= $Amp . $Key . '=' . $Value;

Is there a faster way?

flag

Don't forget if you are outputting HTML, the correct syntax is &amp; not &, iow this is wrong <a href="?name=joe&age=22">JOE</a> yes it works but it's invalid HTML. – TravisO Jan 6 at 18:21

3 Answers

vote up 10 vote down check

You can use http_build_query() to do that.

link|flag
Was trying to find this method in the PHP API myself this is definitely the way to go. If not the alternative is to use a modified implode method such as uk2.php.net/manual/en/… but http_build_query() will properly be faster. – Mark Davidson Jan 2 at 21:11
vote up 2 vote down

Are you seeing a performance hit when you run this code? If you aren't, you should check this link out, and decide if it's really an issue worth burning cycles on.

Hardware is Cheap, Programmers are Expensive

link|flag
vote up 0 vote down

As an aside, I was in search to find the best way to implode an associative array but using my own seperators etc...

So I did this using PHP's array_walk() function to let me join an associative array into a list of parameters that could then be applied to a HTML tag....

// Create Params Array
$p = Array("id"=>"blar","class"=>"myclass","onclick"=>"myJavascriptFunc()");

// Join Params
array_walk($p, create_function('&$i,$k','$i=" $k=\"$i\"";'));
$p_string = implode($p,"");

// Now use $p_string for your html tag

Obviously, you could stick that in your own function somehow but it gives you an idea of how you can join an associative array using your own method. Hope that helps someone :)

link|flag

Your Answer

Get an OpenID
or

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