Fastest way to implode an associative array with keys - Stack Overflow most recent 30 from stackoverflow.com2009-12-08T05:13:57Zhttp://stackoverflow.com/feeds/question/408032http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/408032/fastest-way-to-implode-an-associative-array-with-keys2Fastest way to implode an associative array with keyssirlancelot2009-01-02T21:06:17Z2009-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;</code>' for xhtml links or '<code>&</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><?php
$Amp = $IsXhtml ? '&amp;' : '&';
$Parameters = array('Action' => 'ShowList', 'Page' => '2');
$QueryString = '';
foreach ($Parameters as $Key => $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#4080409Answer by Greg for Fastest way to implode an associative array with keysGreg2009-01-02T21:09:06Z2009-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#4080472Answer by bigmattyh for Fastest way to implode an associative array with keysbigmattyh2009-01-02T21:13:02Z2009-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#5071950Answer by Adam for Fastest way to implode an associative array with keysAdam2009-02-03T14:06:21Z2009-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"=>"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
</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>