From d96ae0f9f59711112801d478abba7f7120ec0ad3 Mon Sep 17 00:00:00 2001 From: Mike Macgirvin Date: Wed, 13 Oct 2010 22:01:23 -0700 Subject: can no longer avoid recording the curl response code --- boot.php | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'boot.php') diff --git a/boot.php b/boot.php index 5016db820..296ae13c3 100644 --- a/boot.php +++ b/boot.php @@ -100,6 +100,8 @@ class App { private $baseurl; private $db; + private $curl_code; + function __construct() { $this->config = array(); @@ -185,6 +187,14 @@ class App { )); } + function set_curl_code($code) { + $this->curl_code = $code; + } + + function get_curl_code() { + return $this->curl_code; + } + }} // retrieve the App structure @@ -347,6 +357,9 @@ function fetch_url($url,$binary = false) { curl_setopt($ch, CURLOPT_BINARYTRANSFER,1); $s = curl_exec($ch); + $info = curl_getinfo($ch); + $a = get_app(); + $a->set_curl_code($info['http_code']); curl_close($ch); return($s); }} @@ -376,6 +389,9 @@ function post_url($url,$params) { } $s = curl_exec($ch); + $info = curl_getinfo($ch); + $a = get_app(); + $a->set_curl_code($info['http_code']); curl_close($ch); return($s); }} -- cgit v1.2.3