GoLang curl_multi_getcontent

request it (218)
GoLang replacement for PHP's curl_multi_getcontent [edit | history]



Do you know a GoLang replacement for PHP's curl_multi_getcontent? Write it!

PHP curl_multi_getcontent

PHP original manual for curl_multi_getcontent [ show | php.net ]

curl_multi_getcontent

(PHP 5, PHP 7)

curl_multi_getcontentReturn the content of a cURL handle if CURLOPT_RETURNTRANSFER is set

Description

string curl_multi_getcontent ( resource $ch )

If CURLOPT_RETURNTRANSFER is an option that is set for a specific handle, then this function will return the content of that cURL handle in the form of a string.

Parameters

ch

A cURL handle returned by curl_init().

Return Values

Return the content of a cURL handle if CURLOPT_RETURNTRANSFER is set.

See Also