php header的目的和好处是什么?

WBOY
Release: 2016-06-06 20:44:12
Original
894 people have browsed it

我发现程序里面即使不用

<code>header("Content-type: text/html; charset=utf-8");
</code>
Copy after login
Copy after login

页面也能正常显示,但是为什么还要加上header呢?这样做的目的和好处是什么呢?

回复内容:

我发现程序里面即使不用

<code>header("Content-type: text/html; charset=utf-8");
</code>
Copy after login
Copy after login

页面也能正常显示,但是为什么还要加上header呢?这样做的目的和好处是什么呢?

这个http 头是告诉浏览器,解下来的文档类型和文档编码。如果你不发,浏览器只能自己猜,有的时候能猜对,
有的时候就不能猜对了。 加上这样的说明,自然更加标准。你可以试试,把文档改成GBK 编码的, 不发送这样的头,看看浏览器是否能每次解释正确

Related labels:
php
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template