Fastest way to implode an associative array with keys - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T05:13:57Z http://stackoverflow.com/feeds/question/408032 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/408032/fastest-way-to-implode-an-associative-array-with-keys 2 Fastest way to implode an associative array with keys sirlancelot 2009-01-02T21:06:17Z 2009-06-29T22:31:53Z <p>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 '<code>&amp;amp;</code>' for xhtml links or '<code>&amp;</code>' otherwise.</p> <p>My first inclination is to use <code>foreach</code> but since my method could be called many times in one request I fear it might be too slow.</p> <pre><code>&lt;?php $Amp = $IsXhtml ? '&amp;amp;' : '&amp;'; $Parameters = array('Action' =&gt; 'ShowList', 'Page' =&gt; '2'); $QueryString = ''; foreach ($Parameters as $Key =&gt; $Value) $QueryString .= $Amp . $Key . '=' . $Value; </code></pre> <p>Is there a faster way?</p> http://stackoverflow.com/questions/408032/fastest-way-to-implode-an-associative-array-with-keys/408040#408040 9 Answer by Greg for Fastest way to implode an associative array with keys Greg 2009-01-02T21:09:06Z 2009-01-02T21:09:06Z <p>You can use <a href="http://www.php.net/http_build_query" rel="nofollow"><code>http_build_query()</code></a> to do that.</p> http://stackoverflow.com/questions/408032/fastest-way-to-implode-an-associative-array-with-keys/408047#408047 2 Answer by bigmattyh for Fastest way to implode an associative array with keys bigmattyh 2009-01-02T21:13:02Z 2009-01-02T21:13:02Z <p>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.</p> <p><a href="http://www.codinghorror.com/blog/archives/001198.html" rel="nofollow">Hardware is Cheap, Programmers are Expensive</a></p> http://stackoverflow.com/questions/408032/fastest-way-to-implode-an-associative-array-with-keys/507195#507195 0 Answer by Adam for Fastest way to implode an associative array with keys Adam 2009-02-03T14:06:21Z 2009-02-03T14:06:21Z <p>As an aside, I was in search to find the best way to implode an associative array but using my own seperators etc...</p> <p>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....</p> <pre><code>// Create Params Array $p = Array("id"=&gt;"blar","class"=&gt;"myclass","onclick"=&gt;"myJavascriptFunc()"); // Join Params array_walk($p, create_function('&amp;$i,$k','$i=" $k=\"$i\"";')); $p_string = implode($p,""); // Now use $p_string for your html tag </code></pre> <p>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 :)</p>