1. <legend id='n0vHO'><style id='n0vHO'><dir id='n0vHO'><q id='n0vHO'></q></dir></style></legend>
    2. <tfoot id='n0vHO'></tfoot>

        • <bdo id='n0vHO'></bdo><ul id='n0vHO'></ul>

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

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

        如何从 PHP 中的 HTTP Accept 标头中选择内容类型

        How to select content type from HTTP Accept header in PHP(如何从 PHP 中的 HTTP Accept 标头中选择内容类型)

        • <legend id='gZnai'><style id='gZnai'><dir id='gZnai'><q id='gZnai'></q></dir></style></legend>

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

                  本文介绍了如何从 PHP 中的 HTTP Accept 标头中选择内容类型的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我正在尝试构建一个符合标准的网站框架,该框架将 XHTML 1.1 作为 application/xhtml+xml 或 HTML 4.01 作为 text/html 服务,具体取决于浏览器的支持.目前它只是在接受标头中的任何位置查找application/xhtml+xml",如果存在则使用它,但这并不灵活——text/html 可能有更高的分数.此外,当添加其他格式(WAP、SVG、XForms 等)时,它会变得更加复杂.那么,有没有人知道一段经过试验和测试的 PHP 代码,可以从服务器提供的字符串数组中选择客户端最支持的数组,或者根据客户端得分排序的列表?

                  I'm trying to build a standard compliant website framework which serves XHTML 1.1 as application/xhtml+xml or HTML 4.01 as text/html depending on the browser support. Currently it just looks for "application/xhtml+xml" anywhere in the accept header, and uses that if it exists, but that's not flexible - text/html might have a higher score. Also, it will become more complex when other formats (WAP, SVG, XForms etc.) are added. So, does anyone know of a tried and tested piece of PHP code to select, from a string array given by the server, either the one best supported by the client or an ordered list based on the client score?

                  推荐答案

                  您可以利用 apache 的 mod_negotiation 模块.这样您就可以使用该模块提供的所有协商功能,包括您自己的偏好内容类型(例如,我真的想交付应用程序/xhtml+xml,除非客户端非常喜欢别的东西").基本解决方案:

                  You can leverage apache's mod_negotiation module. This way you can use the full range of negotiation capabilities the module offers, including your own preferences for the content type (e,g, "I really want to deliver application/xhtml+xml, unless the client very much prefers something else"). basic solution:

                  AddHandler type-map .var

                  创建一个.htaccess文件作为内容

                • as contents

                • create a file foo.var with

                  URI: foo
                  URI: foo.php/html Content-type: text/html; qs=0.7
                  URI: foo.php/xhtml Content-type: application/xhtml+xml; qs=0.8

                  作为内容

                • as contents

                • create a file foo.php with

                  <?php
                  echo 'selected type: ', substr($_SERVER['PATH_INFO'], 1);

                  作为内容.

                • 请求 http://localhost/whatever/foo.var
                • 为此,您需要启用 mod_negotiation、AddHandler 和 AcceptPathInfo 没有被 $_SERVER['PATH_INFO'] 禁用.
                  使用我的 Firefox 发送接受:text/html,application/xhtml+xml,application/xml;q=0.9,/;q=0.8"并且示例 .var 映射的结果是选定类型: xhtml".
                  您可以使用其他调整"来摆脱 PATH_INFO 或请求 foo.var 的需要,但基本概念是:让 mod_negotiation 以脚本可以的方式将请求重定向到您的 php 脚本读取"选定的内容类型.

                  For this to work you need mod_negotiation enabled, the appropriate AllowOverride privileges for AddHandler and AcceptPathInfo not being disabled for $_SERVER['PATH_INFO'].
                  With my Firefox sending "Accept: text/html,application/xhtml+xml,application/xml;q=0.9,/;q=0.8" and the example .var map the result is "selected type: xhtml".
                  You can use other "tweaks" to get rid of PATH_INFO or the need to request foo.var, but the basic concept is: let mod_negotiation redirect the request to your php script in a way that the script can "read" the selected content-type.

                  那么,有没有人知道一段经过试验和测试的 PHP 代码可供选择
                  So, does anyone know of a tried and tested piece of PHP code to select

                  这不是一个纯粹的 php 解决方案,但我想说 mod_negotiation 已经过试验和测试 ;-)

                  It's not a pure php solution but I'd say mod_negotiation has been tried and tested ;-)

                  这篇关于如何从 PHP 中的 HTTP Accept 标头中选择内容类型的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

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

                  相关文档推荐

                  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='NzgF4'></bdo><ul id='NzgF4'></ul>

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