我正在使用curl来填写表单。完成帖子后,处理表单的其他脚本将重定向到另一个URL。我希望将此重定向网址变为变量。
答案 0 :(得分:41)
查找重定向网址的简便方法(如果您不想提前知道)
$last_url = curl_getinfo($ch, CURLINFO_EFFECTIVE_URL);
答案 1 :(得分:34)
你会用
curl_setopt($CURL, CURLOPT_HEADER, TRUE);
并解析location
标题
答案 2 :(得分:8)
这里我获取资源http头,然后我将头解析成数组$ retVal。我从这里获得了解析标题的代码(http://www.bhootnath.in/blog/2010/10/parse-http-headers-in-php/)如果你有(PECL pecl_http> = 0.10.0),你也可以使用http://php.net/manual/en/function.http-parse-headers.php
$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);
答案 3 :(得分:3)
您可能希望将CURLOPT_FOLLOWLOCATION设置为true。
或者将CURLOPT_HEADER设置为true,然后使用regexp获取Location标头。