What to do if php adds Chinese garbled characters

藏色散人
Release: 2023-03-13 20:10:01
Original
2008 people have browsed it

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 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");
Copy after login

2. Use iconv transcoding in php

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

3. Use the tag statement in html

<meta http-equiv="Content-Type" content="text/html; charset="utf-8" />
Copy after login

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!

Related labels:
php
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template