沃梦达 / 编程问答 / php问题 / 正文

如何确定 URL 是否在 PHP 中重定向?

How can I determine if a URL redirects in PHP?(如何确定 URL 是否在 PHP 中重定向?)

本文介绍了如何确定 URL 是否在 PHP 中重定向?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我看到有人问了一个关于检测 URL 是否从 groovy 和 perl 重定向但在 PHP 上找不到任何内容的问题.

I saw someone ask a question about detecting if a URL redirects from groovy and perl but couldn't find anything on PHP.

有人知道我可以在什么地方找到执行此操作的代码吗?

Anyone know of somewhere I could find that code that does this?

推荐答案

实际上,我发现这最有效:

Actually, I found this works best:

    function GetURL($URL)
    {
            $ch = curl_init($URL);

            curl_setopt($ch,CURLOPT_FOLLOWLOCATION,true);


            curl_setopt($ch,CURLOPT_RETURNTRANSFER,true);

            curl_exec($ch);

            $code = curl_getinfo($ch, CURLINFO_EFFECTIVE_URL);

            curl_close($ch);

            return $code;
    }

这篇关于如何确定 URL 是否在 PHP 中重定向?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本文标题为:如何确定 URL 是否在 PHP 中重定向?

基础教程推荐