Answer by kostikovmu for Fastest way to implode an associative array with keys
My solution: $url_string = http_build_query($your_arr); $res = urldecode($url_string);
View ArticleAnswer by FantomX1 for Fastest way to implode an associative array with keys
What about this shorter, more transparent, yet more intuitive with array_walk $attributes = array( 'data-href' => 'http://example.com', 'data-width' => '300', 'data-height' => '250',...
View ArticleAnswer by WackGet for Fastest way to implode an associative array with keys
A one-liner for creating string of HTML attributes (with quotes) from a simple array: $attrString = str_replace("+", " ", str_replace("&", "\" ", str_replace("=", "=\"",...
View ArticleAnswer by Softmixt for Fastest way to implode an associative array with keys
function array_to_attributes ( $array_attributes ) { $attributes_str = NULL; foreach ( $array_attributes as $attribute => $value ) { $attributes_str .= " $attribute=\"$value\" "; } return...
View ArticleAnswer by user4846194 for Fastest way to implode an associative array with keys
This is my solution for example for an div data-attributes: <? $attributes = array( 'data-href' => 'http://example.com', 'data-width' => '300', 'data-height' => '250', 'data-type' =>...
View ArticleAnswer by scunliffe for Fastest way to implode an associative array with keys
If you're not concerned about the exact formatting however you do want something simple but without the line breaks of print_r you can also use json_encode($value) for a quick and simple formatted...
View ArticleAnswer by dino.keco for Fastest way to implode an associative array with keys
One way is using print_r(array, true) and it will return string representation of array
View ArticleAnswer by Adam for Fastest way to implode an associative array with keys
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...
View ArticleAnswer by Greg for Fastest way to implode an associative array with keys
You can use http_build_query() to do that. Generates a URL-encoded query string from the associative (or indexed) array provided.
View ArticleFastest way to implode an associative array with keys
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...
View ArticleAnswer by Unicco for Fastest way to implode an associative array with keys
Use array_walk for this.$arr = ["key" => "value","key2" => "value2",];array_walk($arr, function(&$value, $key) { $value = "{$key}: {$value}";});implode("<br/>", $arr)Resultkey:...
View ArticleAnswer by fekiri malek for Fastest way to implode an associative array with keys
I liked the approach of @kostikovmu as it looks simpler than other long codes. though this is not exactly what we are after..We look for this header format : "...key: value\r\n...".So i used extended...
View Article