function curl_http_request in cURL HTTP Request 6
Same name and namespace in other branches
- 8 chr.module \curl_http_request()
- 7 chr.module \curl_http_request()
Legacy wrapper callback
1 call to curl_http_request()
- chr_curl_http_request in ./
chr.module - Performs an HTTP request.
1 string reference to 'curl_http_request'
- _chr_curl_set_options in ./
chr.module - Set cURL options
File
- ./
chr.module, line 29
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);
}