Home  >  Article  >  Backend Development  >  How to use header to set encoding in php

How to use header to set encoding in php

王林
王林Original
2020-08-19 15:24:222990browse

php uses header to set the encoding method: add the code [header("content-type:text/html; charset=xxx")] at the head of the script. If you want to set UTF-8 encoding, the value of the charset attribute should be UTF-8.

How to use header to set encoding in php

The header() function sends raw HTTP headers to the client.

(Recommended tutorial: php graphic tutorial)

Example:

header("content-type:text/html; charset=xxx");

Implementation code:

The php page is utf encoded

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

(Video tutorial recommendation: php video tutorial)

php page is gbk encoded

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

php page is big5 Coding

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

The above is the detailed content of How to use header to set encoding in php. For more information, please follow other related articles on the PHP Chinese website!

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