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 \'<
My solution:
$url_string = http_build_query($your_arr); $res = urldecode($url_string);