PHP响应头

Posted 追忆枉然

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP响应头相关的知识,希望对你有一定的参考价值。

(1)text/plain

       服务器端:

              header(‘Content-Type: text/plain‘);

              echo ‘succ‘;

       客户端:

              if(xhr.responseText===‘succ‘){ ... }

  (2)text/html

       服务器端:

              header(‘Content-Type: text/html‘);

              echo "<tr><td>$data</td></tr>";

       客户端:

              tbody.innerHTML = xhr.responseText

  (3)application/javascript

       服务器端:

              header(‘Content-Type: application/javascript‘);

              echo "alert($data); f1(); f2($data)";

       客户端:

              eval( xhr.responseText )

  (4)application/xml

       服务器端:

              header(‘Content-Type: application/xml‘);

              echo "<bookList><book>$b</book></bookList>";

       客户端:

              var document = xhr.responseXML

  (5)application/json

       服务器端:

              header(‘Content-Type: application/json‘);

              //echo "[ {"bname":"","price":35.5},{} ]";

              $list = ...;

              echo json_encode($list);

       客户端:

              var obj = JSON.parse( xhr.responseText )

以上是关于PHP响应头的主要内容,如果未能解决你的问题,请参考以下文章

php下载文件,添加响应头

PHP响应头

从响应头中删除服务器信息和 PHP 信息

PHP的header()

php下载文件添加header响应头

服务器响应头隐藏X-power-by