CURLOPT_RETURNTRANSFER with curl_multi

j0nni

New Member
I'm using the curl_multi functions with PHP. I already know that you can return the request contents from \[code\]curl_exec\[/code\] when the \[code\]CURLOPT_RETURNTRANSFER\[/code\] flag is on. However, how can we grab the request contents of multiple requests as strings when using \[code\]curl_multi_exec\[/code\]? Does it return an array when this flag is set? Nope, \[code\]curl_multi_exec\[/code\] can only return \[code\]true\[/code\] or \[code\]false\[/code\], without the option to return the contents like the normal one.
 
Back
Top