function cc::http_parse_request_url in Constant Contact 6.2
* Simple method which calls PHP's parse_url function and saves the result to a variable * * * @access private
1 call to cc::http_parse_request_url()
- cc::http_send in ./
class.cc.php - * This does most the work of creating the HTTP request * *
File
- ./
class.cc.php, line 1670
Class
- cc
- @file
Code
function http_parse_request_url($url) {
$this->http_url_bits = parse_url($url);
}