You are here

function curl_http_request in cURL HTTP Request 7

Same name and namespace in other branches
  1. 8 chr.module \curl_http_request()
  2. 6 chr.module \curl_http_request()

Legacy wrapper callback.

1 string reference to 'curl_http_request'
_chr_curl_set_options in ./chr.module
Set cURL options.

File

./chr.module, line 39
cURL HTTP Request methods

Code

function curl_http_request($url, array $options = array()) {
  watchdog('curl_http_request', 'Call to legacy function curl_http_request. Please use chr_curl_http_request instead.', array(), WATCHDOG_WARNING);
  return chr_curl_http_request($url, $options);
}