博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
PHP获取重定向URL的几种方法
阅读量:5277 次
发布时间:2019-06-14

本文共 2369 字,大约阅读时间需要 7 分钟。

有时候我们会在开发中,经常会遇到有URL 301或 302重定向的情况,这时候我们可能需要获取重定向之后的url,下面我们介绍一下几种获取重定向url的方法:

1、用get_headers函数

php自带的get_headers函数可以获取服务器响应一个HTTP请求所发送的所有标头,我们可以尝试用该函数实现。

function get_redirect_url($url){

$header = get_headers($url, 1);
if (strpos($header[0], ’301′) !== false || strpos($header[0], ’302′) !== false) {
if(is_array($header['Location'])) {
return $header['Location'][count($header['Location'])-1];
}else{
return $header['Location'];
}
}else {
return $url;
}
}

2、使用fsockopen()内置函数

/**

* get_redirect_url() 获取301、302重定向后的URL地址
* @param string $url 请求地址
* $return string  重定向后真实url
*/
function get_redirect_url($url){
$redirect_url = false;

$url_parts = @parse_url($url);

if (!$url_parts) return false;
if (!isset($url_parts['host'])) return false;
if (!isset($url_parts['path'])) $url_parts['path'] = ‘/’;

$sock = fsockopen($url_parts['host'], (isset($url_parts['port']) ? (int)$url_parts['port'] : 80), $errno, $errstr, 30);

if (!$sock) return false;

$request = “HEAD ” . $url_parts['path'] . (isset($url_parts['query']) ? ‘?’.$url_parts['query'] : ”) . ” HTTP/1.1\r\n”;

$request .= ‘Host: ‘ . $url_parts['host'] . “\r\n”;
$request .= “Connection: Close\r\n\r\n”;
fwrite($sock, $request);
$response = ”;
while(!feof($sock)) $response .= fread($sock, 8192);
fclose($sock);

if (preg_match(‘/^Location: (.+?)$/m’, $response, $matches)){

return trim($matches[1]);
} else {
return false;
}
}

3、使用cURL函数

/**

* get_redirect_url() 获取301、302重定向后的URL地址
* @param string $url 请求地址
* $return string  重定向后真实url
*/
function get_redirect_url($url, $referer=”, $timeout = 10) {
$redirect_url = false;
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_HEADER, TRUE);
curl_setopt($ch, CURLOPT_NOBODY, TRUE);//不返回请求体内容
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, TRUE);//允许请求的链接跳转
curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt($ch, CURLOPT_TIMEOUT, $timeout);
curl_setopt($ch, CURLOPT_HTTPHEADER, array(
‘Accept: */*’,
‘User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)’,
‘Connection: Keep-Alive’));
if ($referer) {
curl_setopt($ch, CURLOPT_REFERER, $referer);//设置referer
}

$content = curl_exec($ch);

if(!curl_errno($ch)) {
$redirect_url = curl_getinfo($ch, CURLINFO_EFFECTIVE_URL);//获取最终请求的url地址
}

return $redirect_url;

}

哪个方法的效果更高一些,可以自行测试一下。

 

 

转载自:http://86er.sinaapp.com/?p=215

转载于:https://www.cnblogs.com/caochengli/p/4139927.html

你可能感兴趣的文章
PHP中的数组
查看>>
PHP扩展-扩展的生成和编译
查看>>
Hello world!
查看>>
部分网站公开数据的汇总(2)
查看>>
03-29复利计算单元测试
查看>>
android中 onResume()方法什么时候执行 ??(转)
查看>>
angularjs用回车键动态添加数据,同时渲染到页面
查看>>
软件设计师2008年12月下午试题4(C语言 动态规划)
查看>>
python基础 ---- 使用pyCharm 调试
查看>>
(转)虚函数和纯虚函数区别
查看>>
[小北De编程手记] : Lesson 05 玩转 xUnit.Net 之 从Assert谈UT框架实践
查看>>
我的记忆,我的年
查看>>
search Paths $(SRCROOT)和$(PROJECT_DIR)区别
查看>>
项目中坑(一)
查看>>
bam文件测序深度统计-bamdst
查看>>
JS 小数的常用处理方法
查看>>
Dom4J两种节点添加方法比较
查看>>
BZOJ2212——线段树合并
查看>>
背包九讲之四(混合三种背包问题)
查看>>
radio选中
查看>>