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

How to set encoding in php

爱喝马黛茶的安东尼
爱喝马黛茶的安东尼Original
2019-08-29 15:45:3812282browse

How to set encoding in php

Define a php page in the php header as UTF encoding or GBK encoding.

Related recommendations: "PHP Tutorial"

The php page is utf encoded:

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

The php page is gbk encoded:

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

php page is big5 encoded:

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

Usually, just put the above code on the home page of the php page.

The above is the detailed content of How 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