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 \'<
One way is using print_r(array, true) and it will return string representation of array
print_r(array, true)