I have an array of the form array( 'paramName1'=>'param1', 'paramName2'=>'param2', ...) and want to turn it into a request string of the form paramName1=param1¶mName2=param2&...
It's easy enough to write a function to do this myself, but I was wondering if php already had a function to do this built in?