1. <legend id='qdWXz'><style id='qdWXz'><dir id='qdWXz'><q id='qdWXz'></q></dir></style></legend>
        <bdo id='qdWXz'></bdo><ul id='qdWXz'></ul>

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

      <tfoot id='qdWXz'></tfoot>

        如何获取响应标头?

        时间:2023-11-30
          • <bdo id='KzcvY'></bdo><ul id='KzcvY'></ul>
              <legend id='KzcvY'><style id='KzcvY'><dir id='KzcvY'><q id='KzcvY'></q></dir></style></legend>
                <i id='KzcvY'><tr id='KzcvY'><dt id='KzcvY'><q id='KzcvY'><span id='KzcvY'><b id='KzcvY'><form id='KzcvY'><ins id='KzcvY'></ins><ul id='KzcvY'></ul><sub id='KzcvY'></sub></form><legend id='KzcvY'></legend><bdo id='KzcvY'><pre id='KzcvY'><center id='KzcvY'></center></pre></bdo></b><th id='KzcvY'></th></span></q></dt></tr></i><div id='KzcvY'><tfoot id='KzcvY'></tfoot><dl id='KzcvY'><fieldset id='KzcvY'></fieldset></dl></div>
                  <tbody id='KzcvY'></tbody>
              • <tfoot id='KzcvY'></tfoot>
              • <small id='KzcvY'></small><noframes id='KzcvY'>

                • 本文介绍了如何获取响应标头?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我目前正在 PHP CLI 中连接到远程主机并发送一些标头.然后我的脚本等待响应.我可以将其全部打印出来,但随后它会返回 HTML.我只想要标题.我该怎么做?

                  I'm currently connecting to a remote host in PHP CLI and sending some headers. My script then waits for the response. I can have it all print out, but then it returns the HTML. I only want the headers. How can I do this?

                  推荐答案

                  接收HTTP响应的格式与发送请求基本相同:headers和body用两个CRLF( ).

                  The format for receiving a HTTP response is basically the same as for sending a request: headers and body are separated with two CRLF ( ).

                  $parts = explode("
                  
                  ", $http_response);
                  $headers = array_shift($parts);
                  $body = implode("
                  
                  ", $parts);
                  

                  这篇关于如何获取响应标头?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  上一篇:了解 PHP 的 header() 下一篇:当 header(Location: xxx) 在里面时 PHP if 语句被忽略

                  相关文章

                  • <bdo id='bw4w7'></bdo><ul id='bw4w7'></ul>
                    <tfoot id='bw4w7'></tfoot>

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

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

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