繁体   English   中英

cURL ,获取重定向 url 到一个变量

[英]cURL , get redirect url to a variable

我正在使用 curl 填写表格。 帖子完成后,处理表单的另一个脚本将重定向到另一个 URL。 我想将此重定向 URL 放入一个变量中。

查找重定向网址的简便方法(如果您不想提前知道)

$last_url = curl_getinfo($ch, CURLINFO_EFFECTIVE_URL);

你会用

curl_setopt($CURL, CURLOPT_HEADER, TRUE);

并解析location标头的标头

在这里,我获取资源 http 标头,然后将标头解析为数组 $retVal。 我从这里得到了解析标题的代码(http://www.bhootnath.in/blog/2010/10/parse-http-headers-in-php/ )你也可以使用http://php.net/手册/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 获取 Location 标头。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM