Home  >  Article  >  Backend Development  >  Solution to Chinese garbled characters in PHP database

Solution to Chinese garbled characters in PHP database

藏色散人
藏色散人Original
2020-11-04 10:01:474414browse

Solution to Chinese garbled characters in PHP database: 1. When creating the database, specify the character type as uft8; 2. When creating the table, specify the character type as utf8; 3. In PHP's MySQL connection function, add statements "mysql_query("set names 'utf8'");".

Solution to Chinese garbled characters in PHP database

Recommendation: "PHP Video Tutorial"

To solve the problem of PHP database garbled code, you can make the following settings:

1. Settings in the database:
(1). When creating a new database in MYSQL, the database selects UTF-8 encoding and the character set is set to utf-8_unicode_ci (Unicode (multi-language), size-insensitive Write), the collation of the table in the library is set to utf-8_general_ci; the collation of each field in the table is set to

          utf-8_general_ci

##                .When creating a database, specify the character type to be uft8, such as:

create database db_name character set utf8;

                                or modify the created database to utf8 type:  

alter database db_name character set utf8;

                                                           For example:

CREATE TABLE tb_name(
 id int(10) NOT NULL auto_increment,
 username char(34) NOT NULL ,
 password int(56) NOT NULL,
 PRIMARY KEY (id)
 ) DEFAULT CHARSET=utf8;

                or modify the created table to utf8 format:

alter table tb_name character set utf8;

            or modify a field in the table to utf8 format

alter table tb_name modify type_name varchar(50) CHARACTER SET utf8;

2. Settings during PHP connection, In the MySQL connection function of PHP, add the statement:

//注意此处为utf8,不要写成utf-8
mysql_query("set names 'utf8'");

3. Page declaration code: In the HTML code 93f0f5c25f18dab9d176bd4f6de5d30exxx9c3bca370b5104690d9ef395f2c5f8d1, you can use

6e281dc72bdf24de34b21af79b69ca9cDeclare page encoding

4. Set the browser to utf-8 Format.

5. Editor character encoding, the code document must be saved in utf-8 format.

6. If the inserted data is garbled, you can transcode the inserted data. First convert the string to utf-8 and then insert it into the database.

The above is the detailed content of Solution to Chinese garbled characters in PHP database. 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