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

      <small id='oji94'></small><noframes id='oji94'>

        重定向后的 HTTP 响应代码

        HTTP response code after redirect(重定向后的 HTTP 响应代码)

      1. <small id='i1FxQ'></small><noframes id='i1FxQ'>

          <tbody id='i1FxQ'></tbody>
          <legend id='i1FxQ'><style id='i1FxQ'><dir id='i1FxQ'><q id='i1FxQ'></q></dir></style></legend>

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

                1. 本文介绍了重定向后的 HTTP 响应代码的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  有一个重定向到服务器以获取信息,一旦响应来自服务器,我想检查 HTTP 代码以在有任何以 4XX 开头的代码时抛出异常.为此,我需要知道如何从标头中仅获取 HTTP 代码?这里也涉及到服务器的重定向,所以我担心 curl 对我没有用.

                  There is a redirect to server for information and once response comes from server, I want to check HTTP code to throw an exception if there is any code starting with 4XX. For that I need to know how can I get only HTTP code from header? Also here redirection to server is involved so I afraid curl will not be useful to me.

                  到目前为止,我已经尝试过 此解决方案,但它非常慢并且会在我的情况.我不想增加脚本超时时间并等待更长的时间来获取 HTTP 代码.

                  So far I have tried this solution but it's very slow and creates script time out in my case. I don't want to increase script time out period and wait longer just to get an HTTP code.

                  提前感谢您的任何建议.

                  Thanks in advance for any suggestion.

                  推荐答案

                  您使用 get_headers 并请求第一个响应行的方法将返回重定向的状态代码(如果有)并且 更重要的是,它会发出一个 GET 请求来传输整个文件.

                  Your method with get_headers and requesting the first response line will return the status code of the redirect (if any) and more importantly, it will do a GET request which will transfer the whole file.

                  您只需要一个 HEAD 请求,然后解析标头并返回 last 状态码.以下是执行此操作的代码示例,它使用 $http_response_header 而不是 get_headers,但数组的格式相同:

                  You need only a HEAD request and then to parse the headers and return the last status code. Following is a code example that does this, it's using $http_response_header instead of get_headers, but the format of the array is the same:

                  $url = 'http://example.com/';
                  
                  $options['http'] = array(
                      'method' => "HEAD",
                      'ignore_errors' => 1,
                  );
                  
                  $context = stream_context_create($options);
                  
                  $body = file_get_contents($url, NULL, $context);
                  
                  $responses = parse_http_response_header($http_response_header);
                  
                  $code = $responses[0]['status']['code']; // last status code
                  
                  echo "Status code (after all redirects): $code<br>
                  ";
                  
                  $number = count($responses);
                  
                  $redirects = $number - 1;
                  
                  echo "Number of responses: $number ($redirects Redirect(s))<br>
                  ";
                  
                  if ($redirects)
                  {
                      $from = $url;
                  
                      foreach (array_reverse($responses) as $response)
                      {
                          if (!isset($response['fields']['LOCATION']))
                              break;
                          $location = $response['fields']['LOCATION'];
                          $code = $response['status']['code'];
                  
                          echo " * $from -- $code --> $location<br>
                  ";
                          $from = $location;
                      }
                      echo "<br>
                  ";
                  }
                  
                  /**
                   * parse_http_response_header
                   *
                   * @param array $headers as in $http_response_header
                   * @return array status and headers grouped by response, last first
                   */
                  function parse_http_response_header(array $headers)
                  {
                      $responses = array();
                      $buffer = NULL;
                      foreach ($headers as $header)
                      {
                          if ('HTTP/' === substr($header, 0, 5))
                          {
                              // add buffer on top of all responses
                              if ($buffer) array_unshift($responses, $buffer);
                              $buffer = array();
                  
                              list($version, $code, $phrase) = explode(' ', $header, 3) + array('', FALSE, '');
                  
                              $buffer['status'] = array(
                                  'line' => $header,
                                  'version' => $version,
                                  'code' => (int) $code,
                                  'phrase' => $phrase
                              );
                              $fields = &$buffer['fields'];
                              $fields = array();
                              continue;
                          }
                          list($name, $value) = explode(': ', $header, 2) + array('', '');
                          // header-names are case insensitive
                          $name = strtoupper($name);
                          // values of multiple fields with the same name are normalized into
                          // a comma separated list (HTTP/1.0+1.1)
                          if (isset($fields[$name]))
                          {
                              $value = $fields[$name].','.$value;
                          }
                          $fields[$name] = $value;
                      }
                      unset($fields); // remove reference
                      array_unshift($responses, $buffer);
                  
                      return $responses;
                  }
                  

                  更多信息参见:HEAD first withPHP Streams,最后包含示例代码,您也可以使用 get_headers 执行 HEAD 请求.

                  For more information see: HEAD first with PHP Streams, at the end it contains example code how you can do the HEAD request with get_headers as well.

                  相关:如何可以使用 PHP 检查远程文件是否存在吗?

                  这篇关于重定向后的 HTTP 响应代码的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

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

                  相关文档推荐

                  DeepL的翻译效果还是很强大的,如果我们要用php实现DeepL翻译调用,该怎么办呢?以下是代码示例,希望能够帮到需要的朋友。 在这里需要注意,这个DeepL的账户和api申请比较难,不支持中国大陆申请,需要拥有香港或者海外信用卡才行,没账号的话,目前某宝可以
                  PHP通过phpspreadsheet导入Excel日期,导入系统后,全部变为了4开头的几位数字,这是为什么呢?原因很简单,将Excel的时间设置问文本,我们就能看到该日期本来的数值,上图对应的数值为: 要怎么解决呢?进行数据转换就行,这里可以封装方法,或者用第三方的
                  mediatemple - can#39;t send email using codeigniter(mediatemple - 无法使用 codeigniter 发送电子邮件)
                  Laravel Gmail Configuration Error(Laravel Gmail 配置错误)
                  Problem with using PHPMailer for SMTP(将 PHPMailer 用于 SMTP 的问题)
                  Issue on how to setup SMTP using PHPMailer in GoDaddy server(关于如何在 GoDaddy 服务器中使用 PHPMailer 设置 SMTP 的问题)
                    • <bdo id='KBcyD'></bdo><ul id='KBcyD'></ul>
                          <tbody id='KBcyD'></tbody>

                          <tfoot id='KBcyD'></tfoot>

                            <legend id='KBcyD'><style id='KBcyD'><dir id='KBcyD'><q id='KBcyD'></q></dir></style></legend>

                            <small id='KBcyD'></small><noframes id='KBcyD'>

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