I am using curl_multi functions with PHP. I already know that you can return the contents of a request from curl_execwhen the flag is CURLOPT_RETURNTRANSFERon. However, how can we capture the query contents of multiple queries as strings when used curl_multi_exec?
Returns an array when this flag is set?No, it curl_multi_execcan return only trueor false, without the possibility of returning the contents, as usual.
source
share