Home >Backend Development >PHP Tutorial >PHP程序在浏览器中文乱码有关问题

PHP程序在浏览器中文乱码有关问题

WBOY
WBOYOriginal
2016-06-13 12:21:12917browse

PHP程序在浏览器中文乱码问题

如果 你的 PHP源文件是用 utf-8 编码的。你在源文件中的 中文 在浏览器中 要想不乱吗, 你就要告诉浏览器,你的中文是用utf-8 编码的。

具体就是加上下面这一句
header(“Content-Type: text/html; charset=utf-8”);

在我的程序上生效了。 你试试。

Statement:
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