<bdo id='T4MPr'></bdo><ul id='T4MPr'></ul>
  1. <tfoot id='T4MPr'></tfoot>
    <i id='T4MPr'><tr id='T4MPr'><dt id='T4MPr'><q id='T4MPr'><span id='T4MPr'><b id='T4MPr'><form id='T4MPr'><ins id='T4MPr'></ins><ul id='T4MPr'></ul><sub id='T4MPr'></sub></form><legend id='T4MPr'></legend><bdo id='T4MPr'><pre id='T4MPr'><center id='T4MPr'></center></pre></bdo></b><th id='T4MPr'></th></span></q></dt></tr></i><div id='T4MPr'><tfoot id='T4MPr'></tfoot><dl id='T4MPr'><fieldset id='T4MPr'></fieldset></dl></div>
  2. <small id='T4MPr'></small><noframes id='T4MPr'>

    1. <legend id='T4MPr'><style id='T4MPr'><dir id='T4MPr'><q id='T4MPr'></q></dir></style></legend>

      如何使用 PHP 获取请求的来源?

      How I can get origin of request with PHP?(如何使用 PHP 获取请求的来源?)
      <legend id='DlXjV'><style id='DlXjV'><dir id='DlXjV'><q id='DlXjV'></q></dir></style></legend>

        <tbody id='DlXjV'></tbody>
        • <small id='DlXjV'></small><noframes id='DlXjV'>

          <i id='DlXjV'><tr id='DlXjV'><dt id='DlXjV'><q id='DlXjV'><span id='DlXjV'><b id='DlXjV'><form id='DlXjV'><ins id='DlXjV'></ins><ul id='DlXjV'></ul><sub id='DlXjV'></sub></form><legend id='DlXjV'></legend><bdo id='DlXjV'><pre id='DlXjV'><center id='DlXjV'></center></pre></bdo></b><th id='DlXjV'></th></span></q></dt></tr></i><div id='DlXjV'><tfoot id='DlXjV'></tfoot><dl id='DlXjV'><fieldset id='DlXjV'></fieldset></dl></div>
          <tfoot id='DlXjV'></tfoot>

              • <bdo id='DlXjV'></bdo><ul id='DlXjV'></ul>
              • 本文介绍了如何使用 PHP 获取请求的来源?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                问题描述

                如果有人从 some-client.comsome-rest.com 发送 XHR 请求,我想要获取来源(域名,而不是客户端 ip) 的 PHP 请求.

                可能的解决方案:

                • 也许我可以使用 $_SERVER['HTTP_ORIGIN'] 但我不知道它是否是标准.
                • 我看到另一个标头,如 $_SERVER['HTTP_HOST']$_SERVER['SERVER_NAME'],但在某些情况下,这会返回真正的 hostname 而不是真正的 domain.
                • 并且 $_SERVER['REMOTE_ADDR'] 提供客户端 IP.

                使用 PHP 获取请求来源(如域名)的正确方法是什么?

                谢谢!

                解决方案

                根据文章

                因此,要使用 PHP 获取 XHR 请求的来源,您可以使用:

                $_SERVER['HTTP_ORIGIN']

                而且,在直接请求的情况下,您可以结合 HTTP_REFERERREMOTE_ADDR 像:

                if (array_key_exists('HTTP_REFERER', $_SERVER)) {$origin = $_SERVER['HTTP_REFERER'];} 别的 {$origin = $_SERVER['REMOTE_ADDR'];}

                所以,可能的最终解决方案是:

                if (array_key_exists('HTTP_ORIGIN', $_SERVER)) {$origin = $_SERVER['HTTP_ORIGIN'];}否则 if (array_key_exists('HTTP_REFERER', $_SERVER)) {$origin = $_SERVER['HTTP_REFERER'];} 别的 {$origin = $_SERVER['REMOTE_ADDR'];}

                MDN 是 Mozilla 开发者网络.

                非常感谢@trine、@waseem-bashir、@p0lt10n 和其他人的帮助.

                If someone send XHR request from some-client.com to some-rest.com, I want get origin(domain name, not client ip) of the request with PHP.

                The possible solutions:

                • Maybe I can use $_SERVER['HTTP_ORIGIN'] but I don't know if it is a standard.
                • I see another header like $_SERVER['HTTP_HOST'] or $_SERVER['SERVER_NAME'], but some cases this return the real hostname and not the real domain.
                • And $_SERVER['REMOTE_ADDR'] gives the client IP.

                Whats is the correct way to get origin of request like a domain name with PHP?

                Thanks!

                解决方案

                According to the article HTTP access control (CORS) by MDN:

                All requests must be set Origin header to work correctly under CORS(Cross-origin resource sharing) mechanism.

                The "Origin" request header is part of RFC 6454 and describes it as part of CORS mechanism and is compatible with all browsers according to MDN.

                Description by MDN:

                The Origin request header indicates where a fetch originates from. It doesn't include any path information, but only the server name. It is sent with CORS requests, as well as with POST requests. It is similar to the Referer header, but, unlike this header, it doesn't disclose the whole path.

                Source: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Origin

                Example by MDN:

                So, to get origin of the XHR request with PHP you can use:

                $_SERVER['HTTP_ORIGIN'] 
                

                And, in the case of a direct request, you can combine HTTP_REFERER and REMOTE_ADDR like:

                if (array_key_exists('HTTP_REFERER', $_SERVER)) {
                    $origin = $_SERVER['HTTP_REFERER'];
                } else {
                    $origin = $_SERVER['REMOTE_ADDR'];
                }
                

                So, the possible final solution is:

                if (array_key_exists('HTTP_ORIGIN', $_SERVER)) {
                    $origin = $_SERVER['HTTP_ORIGIN'];
                }
                else if (array_key_exists('HTTP_REFERER', $_SERVER)) {
                    $origin = $_SERVER['HTTP_REFERER'];
                } else {
                    $origin = $_SERVER['REMOTE_ADDR'];
                }
                

                MDN is Mozilla Developer Network.

                Thanks a lot for help @trine, @waseem-bashir, @p0lt10n, and others persons.

                这篇关于如何使用 PHP 获取请求的来源?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                相关文档推荐

                Appending GET parameters to URL from lt;formgt; action(将 GET 参数附加到来自 lt;formgt; 的 URL行动)
                Forcing quot;Save Asquot; dialog via jQuery GET(强制“另存为通过 jQuery GET 对话框)
                PHP - get certain word from string(PHP - 从字符串中获取某个单词)
                How to debug a get request in php using curl(如何使用 curl 在 php 中调试 get 请求)
                get a # from a url in php(从 php 中的 url 获取 #)
                PHP - include() file not working when variables are put in url?(PHP - 将变量放入 url 时,include() 文件不起作用?)
                  <i id='CFhSP'><tr id='CFhSP'><dt id='CFhSP'><q id='CFhSP'><span id='CFhSP'><b id='CFhSP'><form id='CFhSP'><ins id='CFhSP'></ins><ul id='CFhSP'></ul><sub id='CFhSP'></sub></form><legend id='CFhSP'></legend><bdo id='CFhSP'><pre id='CFhSP'><center id='CFhSP'></center></pre></bdo></b><th id='CFhSP'></th></span></q></dt></tr></i><div id='CFhSP'><tfoot id='CFhSP'></tfoot><dl id='CFhSP'><fieldset id='CFhSP'></fieldset></dl></div>
                  <legend id='CFhSP'><style id='CFhSP'><dir id='CFhSP'><q id='CFhSP'></q></dir></style></legend>
                • <small id='CFhSP'></small><noframes id='CFhSP'>

                          <tbody id='CFhSP'></tbody>
                        • <bdo id='CFhSP'></bdo><ul id='CFhSP'></ul>

                          <tfoot id='CFhSP'></tfoot>