function cc::show_last_connection in Constant Contact 6.3
Same name and namespace in other branches
- 7.3 class.cc.php \cc::show_last_connection()
* This method does a print_r on the http_request and http_response variables * Useful for debugging the HTTP request * * @access public
File
- ./
class.cc.php, line 267
Class
- cc
- @file
Code
function show_last_connection() {
print_r($this->http_request);
print_r($this->http_response);
}