Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am very new to the concept and coding of curl however my below functions crawl a given url and return the pages data. One function (not my own) is included to get around the fact my server has curls FOLLOWONLOCATION function off.

These functions work great only I would like to not only return the pages data but also the http status code i.e 200,401,500 etc and the last redirected url i.e I dont want the original url passed to curl I want the final url that the address redirected too!?!

Hope that makes some sense :)

Now for some code:

   /**
    * curl_redir_exec - a little workaround
    * for followonlocation issues with curl.
    */
    function curl_redir_exec($ch, &$redirects = 0, $curlopt_header = false) {
        curl_setopt($ch, CURLOPT_HEADER, true);
        curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
        $data = curl_exec($ch);
        $http_code = curl_getinfo($ch, CURLINFO_HTTP_CODE);
        if ($http_code == 301 || $http_code == 302) {
            list($header) = explode("\r\n\r\n", $data, 2);
            $matches = array();
            preg_match('/(Location:|URI:)(.*?)\n/', $header, $matches);
            $url = trim(array_pop($matches));
            $url_parsed = parse_url($url);
            if (isset($url_parsed)) {
                curl_setopt($ch, CURLOPT_URL, $url);
                $redirects++;
                return $this->curl_redir_exec($ch, $redirects);
            }
        }
        if ($curlopt_header)
            return $data;
        else {
            list(,$body) = explode("\r\n\r\n", $data, 2);
            return $body;
        }
    }

   /**
    * fileCurl - a simple external file
    * retrieval for reading/chache
    */
    function fileCurl($url){
        $headers = "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.9.2.6) Gecko/20100625 Firefox/3.6.6 (.NET CLR 3.5.30729)";

        $go = curl_init();
        curl_setopt($go, CURLOPT_URL, $url);
        curl_setopt($go, CURLOPT_USERAGENT, $headers);
        curl_setopt($go, CURLOPT_REFERER, $url); 
        curl_setopt($go, CURLOPT_HEADER, true); 
        curl_setopt($go, CURLOPT_RETURNTRANSFER, true);
        curl_setopt($go, CURLOPT_CONNECTTIMEOUT, 10);
        /* Follow on location problems */
        if (ini_get('open_basedir') == '' && ini_get('safe_mode' == 'Off')){
            curl_setopt ($go, CURLOPT_FOLLOWLOCATION, true);
            $syn = curl_exec($go);
        } else {
            $syn = $this->curl_redir_exec($go);
        }
        curl_close($go);
        return $syn;
    }

Many thanks in advance

share|improve this question

1 Answer

if ($curlopt_header) 
$return = array (
   "code"  => $http_code,
   "url"   => $url,
   "data"  => $data
);
return $return; 
else {
$return = array (
   "code"  => $http_code,
   "url"   => $url,
   "data"  => list(,$body) = explode("\r\n\r\n", $data, 2)
);
return $return; 
}  

so I figure the above will work in function curl_redir_exec - will test tonight but how do I do this if my cURL does FOLLOWONLOCATION i.e the server has it enabled how do I return the URL and HTTP status code?

Anyone? Thanks

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.