Home >Backend Development >PHP Tutorial >为什么直接用php输出静态页面会出现乱码?

为什么直接用php输出静态页面会出现乱码?

PHPz
PHPzOriginal
2016-06-06 20:51:061357browse

为什么直接用php输出静态页面会出现乱码?

为什么直接用php输出静态页面会出现乱码?

具体问题:

我直接写了个php文件

<html>
<head>
<title>你好世界</title>
</head>
你好世界
</html>

结果为什么会变成这样?

回答方法:

PHP:

header("Content-type: text/html; charset=utf-8");

既然是HTML页面,指定charset也是必要的:

<meta charset="UTF-8" />

更多相关技术文章,请访问PHP中文网

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