search
HomeBackend DevelopmentPHP TutorialSolution to phpMyAdmin displaying Chinese garbled characters_PHP Tutorial
Solution to phpMyAdmin displaying Chinese garbled characters_PHP TutorialJul 13, 2016 am 10:56 AM
mysqlphpphpmyadmingenerallyandChineseGarbled charactersAppearmethodshowofexperiencesolve

According to my experience, garbled characters in php and mysql are generally caused by document encoding problems such as gbk, uft8, gb2312, etc. that are inconsistent with the page encoding. Below I have summarized the solution to phpMyAdmin displaying Chinese garbled characters.

Look at the picture first

Solution 1

php.ini does not have extension=php_mysql.dll

After encountering this problem, it will usually appear when opening phpmyadmin

Garbled code error

We copy libmysql.dll in php to c:\windows\system32 or c:\winnt\system32

Then just restart your computer

Solution 2

The following is my modification process:
Open the libraries/select_lang.lib.php file in the root directory of phpMyAdmin;
Found:

 代码如下 复制代码
'zh-gb2312'         => array('zh|chinese simplified', 'chinese_simplified-gb2312', 'zh', '中文'),


Change it to:

 代码如下 复制代码
'zh-gb2312-utf-8'         => array('zh|chinese simplified-UTF8', 'chinese_simplified-gb2312', 'zh', '中文'),


Found again:

 代码如下 复制代码
'gb2312'       => 'gb2312',


Change it to:

 代码如下 复制代码
'gb2312'       => 'latin1',

Save the file and exit.

Then open phpMyAdmin from the browser and select Language on the homepage as: Chinese - Chinese simplified-UTF8

Then open the data table and see if the Chinese inside can be displayed normally:)


Solution Three


Tables in Mysql use latin1 encoding by default, but if the content is added through mysql commands, etc., it is generally inserted with gb2312 encoding, directly on phpmyadmin. Language: Chinese - Chinese simplified. When viewed under Chinese simplified, it is garbled

1. Open libraries/select_lang.lib.php, find the $available_languages ​​array, and add one piece of data at the end:

Php code

The code is as follows Copy code
1.'zh-gb2312-utf-8 ' => array('zh|chinese simplified latin1', 'chinese_simplified-gb2312', 'zh', '中文')
 代码如下 复制代码
1.'zh-gb2312-utf-8' => array('zh|chinese simplified latin1', 'chinese_simplified-gb2312', 'zh', '中文')  
'zh-gb2312-utf-8' => array('zh|chinese simplified latin1', 'chinese_simplified-gb2312', 'zh', '中文')
'zh-gb2312-utf-8' => array('zh|chinese simplified latin1', 'chinese_simplified-gb2312', 'zh', '中文')

Note: 中文 represents the word "Chinese".

2. Search $mysql_charset_map again to find this array, and change one of the values ​​'gb2312' => 'gb2312' to 'gb2312' => 'latin1'.

3. Re-open phpmyadmin. Language selection Chinese - Chinese simplified latin1


At this time, open the latin1 encoded table and you can see that the garbled characters are no longer there:

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/632178.htmlTechArticleAccording to my experience, garbled characters in php and mysql are generally caused by document encoding problems such as gbk, uft8, gb2312, etc. It is inconsistent with the page encoding. Below I summarize the solution for phpMyAdmin to display Chinese garbled characters...
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
phpmyadmin怎么设置主键phpmyadmin怎么设置主键Apr 07, 2024 pm 02:54 PM

表的主键是一列或多列,用于唯一标识表中每条记录。设置主键的步骤如下:登录 phpMyAdmin。选择数据库和表。勾选要作为主键的列。点击 "保存更改"。主键具有数据完整性、查找速度和关系建模方面的好处。

phpmyadmin怎么添加外键phpmyadmin怎么添加外键Apr 07, 2024 pm 02:36 PM

在 phpMyAdmin 中添加外键可以通过以下步骤实现:选择包含外键的父表。编辑父表结构,在“列”中添加新列。启用外键约束,选择引用表和键。设置更新/删除操作。保存更改。

phpmyadmin账号密码是什么phpmyadmin账号密码是什么Apr 07, 2024 pm 01:09 PM

PHPMyAdmin 的默认用户名和密码为 root 和空。为了安全起见,建议更改默认密码。更改密码的方法:1. 登录 PHPMyAdmin;2. 选择 "privileges";3. 输入新密码并保存。忘记密码时,可通过停止 MySQL 服务并编辑配置文件的方式重置密码:1. 添加 skip-grant-tables 行;2. 登录 MySQL 命令行并重置 root 密码;3. 刷新权限表;4. 删除 skip-grant-tables 行,重启 MySQL 服务。

phpmyadmin日志在哪里phpmyadmin日志在哪里Apr 07, 2024 pm 12:57 PM

PHPMyAdmin日志文件的默认位置:Linux/Unix/macOS:/var/log/phpmyadminWindows:C:\xampp\phpMyAdmin\logs\日志文件用途:故障排除审计安全性

phpmyadmin怎么删除数据表phpmyadmin怎么删除数据表Apr 07, 2024 pm 03:00 PM

phpMyAdmin 中删除数据表的步骤:选择数据库和数据表;点击“操作”选项卡;选择“删除”选项;确认并执行删除操作。

为什么phpmyadmin拒绝访问为什么phpmyadmin拒绝访问Apr 07, 2024 pm 01:03 PM

phpMyAdmin 拒绝访问的原因及解决方案:认证失败:检查用户名和密码是否正确。服务器配置错误:调整防火墙设置,检查数据库端口是否正确。权限问题:授予用户对数据库的访问权限。会话超时:刷新浏览器页面重新连接。phpMyAdmin 配置错误:检查配置文件和文件权限,确保启用了必需的 Apache 模块。服务器问题:等待一段时间后再重试或联系主机提供商。

phpmyadmin漏洞属于什么漏洞phpmyadmin漏洞属于什么漏洞Apr 07, 2024 pm 01:36 PM

phpMyAdmin 易受多种漏洞影响,包括:1. SQL 注入漏洞;2. 跨站点脚本 (XSS) 漏洞;3. 远程代码执行 (RCE) 漏洞;4. 本地文件包含 (LFI) 漏洞;5. 信息泄露漏洞;6. 权限提升漏洞。

phpmyadmin关联视图在哪phpmyadmin关联视图在哪Apr 07, 2024 pm 01:00 PM

可以在 phpMyAdmin 中“结构”选项卡下的“视图”子菜单中找到关联视图。要访问它们,只需选择数据库、点击“结构”选项卡、然后点击“视图”子菜单。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)