search
Homephp教程php手册PHP 获取短网址跳转后的真实地址的实例

你可能所有不知道获取短网址跳转后的真实地址我们可以使用get_headers()函数来实现,下面我一起来看我总结的一些例子.

获取到一个短连接,需要将短连接转换成真实的网址,通过查资料,发现 PHP 提供了一个函数 get_headers(),可以完成这个任务,先把 头部信息获取到,然后再分析跳转地址即可.

利用get_headers() 函数获取http头,php 自带的get_headers()取得服务器响应一个 HTTP 请求所发送的所有标头, 获取301状态肯定没问题.

例子,代码如下:

$url = 'http://dwz.cn/29uQh7'; 
$headers = get_headers($url, TRUE); 
print_r($headers); 
//输出跳转到的网址 
echo $headers['Location'];

//附: 

Array 
( 
    [0] => HTTP/1.1 302 Moved Temporarily 
    [Location] => http://www.phprm.com 
    [Content-Type] => Array 
        ( 
            [0] => text/html;charset=UTF-8 
            [1] => text/html;charset=utf-8 
        ) 
    [Server] => Array 
        ( 
            [0] => weibo 
            [1] => BWS/1.0 
        ) 
    [Content-Length] => Array 
        ( 
            [0] => 203 
            [1] => 16424 
        ) 
    [Date] => Array 
        ( 
            [0] => Thu, 12 Dec 2013 10:42:25 GMT 
            [1] => Thu, 12 Dec 2013 10:42:25 GMT 
        ) 
    [X-Varnish] => 2893360335 
    [Age] => 0 
    [Via] => 1.1 varnish 
    [Connection] => Array 
        ( 
            [0] => close 
            [1] => Close 
        ) 
)

好了我们看一个获取短网址跳转之前的网址,代码如下:

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


本文地址:

转载随意,但请附上文章地址:-)

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.