cURL,获取redirecturl到一个variables

我目前使用curl来填充表单,但是在完成后,处理表单的其他脚本被redirect到其他url,现在我想要获取url,脚本被redirect到一个variables。

谢谢..

你会用

curl_setopt($CURL, CURLOPT_HEADER, TRUE); 

parsinglocation标题的标题

简单的方法来findredirect的url(如果你不想提前知道)

 $last_url = curl_getinfo($ch, CURLINFO_EFFECTIVE_URL); 

在这里,我得到的资源http标题,然后我parsing出来的数组$ retVal。 我从这里得到parsing标题的代码( http://www.bhootnath.in/blog/2010/10/parse-http-headers-in-php/ )你也可以使用http://php.net/ manual / en / function.http-parse-headers.php如果你有(PECL pecl_http> = 0.10.0)

  $ch = curl_init(); $timeout = 0; curl_setopt ($ch, CURLOPT_URL, $url); curl_setopt ($ch, CURLOPT_CONNECTTIMEOUT, $timeout); curl_setopt($ch, CURLOPT_HEADER, TRUE); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_BINARYTRANSFER, 1); // Getting binary data $header = curl_exec($ch); $retVal = array(); $fields = explode("\r\n", preg_replace('/\x0D\x0A[\x09\x20]+/', ' ', $header)); foreach( $fields as $field ) { if( preg_match('/([^:]+): (.+)/m', $field, $match) ) { $match[1] = preg_replace('/(?<=^|[\x09\x20\x2D])./e', 'strtoupper("\0")', strtolower(trim($match[1]))); if( isset($retVal[$match[1]]) ) { $retVal[$match[1]] = array($retVal[$match[1]], $match[2]); } else { $retVal[$match[1]] = trim($match[2]); } } } //here is the header info parsed out echo '<pre>'; print_r($retVal); echo '</pre>'; //here is the redirect if (isset($retVal['Location'])){ echo $retVal['Location']; } else { //keep in mind that if it is a direct link to the image the location header will be missing echo $_GET[$urlKey]; } curl_close($ch); 

您可能希望将CURLOPT_FOLLOWLOCATION设置为true。

或者将CURLOPT_HEADER设置为true,然后使用regexp来获取位置标题。