Home  >  Article  >  Backend Development  >  php solves garbled code

php solves garbled code

王林
王林Original
2019-09-30 17:45:222294browse

php solves garbled code

First method: Solve the problem of Chinese garbled characters in HTML

If your HTML file has garbled characters, then you can Add UTF8 encoding (international encoding) to the head tag: UTF-8 has no national encoding, that is, it is independent of any language and can be used in any language.

Second: HTML and PHP mixed page solution

How to mix HTML and PHP, in addition to following the operations mentioned in the first method In addition, you also need to add this code at the top of the PHP file:

The third type: Chinese garbled problem in pure PHP pages (the data is static)

If your PHP page is garbled, just add the following code at the beginning of the page.

The fourth type: PHP Mysql Chinese garbled problem

In addition to following the operations mentioned in the third type, you also need to query/modify your data /Add database encoding before adding. Moreover, it is worth noting that the UTF8 here is different from the previous one, there is no horizontal line in the middle.

If you are using MySQL version 4.1 or higher, you can set a character encoding after the link database operation, like the following:

php solves garbled code

UTF-8 encoding is just one of the encodings. If you don’t want to use utf-8 encoding, you can also use other encodings. Just replace UTF-8 with the encoding you want to use. Currently, the main one used in Chinese website development is GB2312 and UTF-8 two encodings.

Note:

The mysql_query("set names 'coding'"); encoding added before the PHP program that needs to perform database operations must be consistent with the PHP encoding. , if the php encoding is gb2312, then the mysql encoding is gb2312, if it is utf-8, then the mysql encoding is utf8, so that there will be no garbled characters when inserting or retrieving data.

Recommended tutorial: PHP video tutorial

The above is the detailed content of php solves garbled code. 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