最新消息: 新版网站上线了!!!

php curl获取重定向等信息

  1. function get_url( $url,  $javascript_loop = 0, $timeout = 5 ) 
  2.     $url = str_replace"&""&", urldecode(trim($url)) ); 
  3.  
  4.     $cookie = tempnam ("/tmp""CURLCOOKIE"); 
  5.     $ch = curl_init(); 
  6.     curl_setopt( $ch, CURLOPT_USERAGENT, "Mozilla/5.0 (Windows; U; Windows NT 5.1; rv:1.7.3) Gecko/20041001 Firefox/0.10.1" ); 
  7.     curl_setopt( $ch, CURLOPT_URL, $url ); 
  8.     curl_setopt( $ch, CURLOPT_COOKIEJAR, $cookie ); 
  9.     curl_setopt( $ch, CURLOPT_FOLLOWLOCATION, true ); 
  10.     curl_setopt( $ch, CURLOPT_ENCODING, "" ); 
  11.     curl_setopt( $ch, CURLOPT_RETURNTRANSFER, true ); 
  12.     curl_setopt( $ch, CURLOPT_AUTOREFERER, true ); 
  13.     curl_setopt( $ch, CURLOPT_SSL_VERIFYPEER, false );    # required for https urls 
  14.     curl_setopt( $ch, CURLOPT_CONNECTTIMEOUT, $timeout ); 
  15.     curl_setopt( $ch, CURLOPT_TIMEOUT, $timeout ); 
  16.     curl_setopt( $ch, CURLOPT_MAXREDIRS, 10 ); 
  17.     $content = curl_exec( $ch ); 
  18.     $response = curl_getinfo( $ch ); 
  19.     curl_close ( $ch ); 
  20.  
  21.     if ($response['http_code'] == 301 || $response['http_code'] == 302) 
  22.     { 
  23.         ini_set("user_agent""Mozilla/5.0 (Windows; U; Windows NT 5.1; rv:1.7.3) Gecko/20041001 Firefox/0.10.1"); 
  24.  
  25.         if ( $headers = get_headers($response['url']) ) 
  26.         { 
  27.             foreach$headers as $value ) 
  28.             { 
  29.                 if ( substrstrtolower($value), 0, 9 ) == "location:" ) 
  30.                     return get_url( trim( substr$value, 9, strlen($value) ) ) ); 
  31.             } 
  32.         } 
  33.     } 
  34.  
  35.     if (    ( preg_match("/>[[:space:]]+window\.location\.replace\('(.*)'\)/i"$content$value) || preg_match("/>[[:space:]]+window\.location\=\"(.*)\"/i"$content$value) ) && 
  36.             $javascript_loop < 5 
  37.     ) 
  38.     { 
  39.         return get_url( $value[1], $javascript_loop+1 ); 
  40.     } 
  41.     else 
  42.     { 
  43.         return array$content$response ); 
  44.     } 

 

转载请注明:谷谷点程序 » php curl获取重定向等信息