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 \'<
You can use http_build_query() to do that.
Generates a URL-encoded query string from the associative (or indexed) array provided.