cURL , 获取重定向 url 到一个变量
Posted
技术标签:
【中文标题】cURL , 获取重定向 url 到一个变量【英文标题】:cURL , get redirect url to a variable 【发布时间】:2011-05-03 01:06:25 【问题描述】:我正在使用 curl 来填写表格。发布完成后,处理表单的另一个脚本将重定向到另一个 URL。我想将此重定向 URL 放入变量中。
【问题讨论】:
How can I get the destination URL using cURL?的可能重复 【参考方案1】:找到重定向网址的简单方法(如果您不想提前知道)
$last_url = curl_getinfo($ch, CURLINFO_EFFECTIVE_URL);
【讨论】:
是CURLINFO_REDIRECT_URL
但我在这里找到它php.net/ChangeLog-5.php !!! CURLINFO_REDIRECT_URL 已添加到 5.3.7 - 但未记录。但从源头来看,我假设这是(第一个)重定向 url 值,以防 curl 调用未使用自动重定向。所以我们会知道下一个 url 是什么,以防我们启用重定向。谢谢@Sparky 强迫我挖掘。
CURLINFO_EFFECTIVE_URL
为我工作。 CURLINFO_REDIRECT_URL
没有返回任何东西,也许我只是做错了什么=/
CURLINFO_EFFECTIVE_URL 为我返回当前(请求的)页面。 curl_info 结果中没有重定向 (Location:) url。看来,解析标头是最好的做法......
禁用 CURLOPT_FOLLOWLOCATION 选项:在最后一个事务中找到重定向 URL,接下来应该手动请求。启用 CURLOPT_FOLLOWLOCATION 选项后:这是空的。在这种情况下,重定向 URL 在 CURLINFO_EFFECTIVE_URL 中可用【参考方案2】:
你会使用
curl_setopt($CURL, CURLOPT_HEADER, TRUE);
并解析 location
标头的标头
【讨论】:
没问题,使用 post 字段将发送数据,然后服务器将重定向,当数据作为响应输出时,curl 会选择它,因此位置标头应该在那里。跨度> 【参考方案3】:在这里,我获取资源 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);
【讨论】:
我试过这个解析代码但它不起作用,我在“explode()”部分抛出了几个错误:将数组转换为字符串 inpreg_replace
/e modifier is deprecated
有人可以更新这个答案吗?
发现这个answer 有助于减少代码行和正则表达式的复杂性【参考方案4】:
您可能希望将 CURLOPT_FOLLOWLOCATION 设置为 true。
或者将 CURLOPT_HEADER 设置为 true,然后使用正则表达式获取 Location 标头。
【讨论】:
还要注意 php 安全模式,php.net/manual/en/function.curl-setopt.php#95027以上是关于cURL , 获取重定向 url 到一个变量的主要内容,如果未能解决你的问题,请参考以下文章