Home  >  Article  >  Backend Development  >  What to do if php adds Chinese garbled characters

What to do if php adds Chinese garbled characters

藏色散人
藏色散人Original
2021-11-15 09:23:331874browse

Solutions for adding Chinese garbled characters in php: 1. Set the encoding method in the header in php; 2. Use iconv to transcode; 3. Use the 0b06b01d593eb6158ab14a0c0e15c90d tag to declare the encoding in html.

What to do if php adds Chinese garbled characters

The operating environment of this article: windows7 system, PHP7.1 version, DELL G3 computer

php added What should I do if the Chinese characters are garbled?

In PHP, Chinese garbled characters are very troublesome and troublesome, so based on my experience in programming, I summarize the following methods (taking utf_8 as an example),

1.php Set the encoding method for the header

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

2. Use iconv transcoding in php

echo iconv("GB2312","UTF-8",'中文内容');

3. Use the 0b06b01d593eb6158ab14a0c0e15c90d tag statement in html

These are all programming It is often used. If there are other methods, please give us some advice!

Recommended learning: "PHP Video Tutorial"

The above is the detailed content of What to do if php adds Chinese garbled characters. 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