This question already has answers here:
How to display UTF-8 characters in phpMyAdmin?
(18个回答)
3年前关闭。
抱歉,如果我的问题重复,在谷歌搜索后,我找到了一个回答我的问题,说:
现在我的问题是我在librarys文件夹中没有(database_interface.lib.php)
我的xampp版本是3.2.2
(18个回答)
3年前关闭。
抱歉,如果我的问题重复,在谷歌搜索后,我找到了一个回答我的问题,说:
1-go to libraries folder
2-finding file database_interface.lib.php
3-comment below code:
if (! empty($GLOBALS['collation_connection'])) {
PMA_DBI_query("SET CHARACTER SET 'utf8';", $link, PMA_DBI_QUERY_STORE);
$mysql_charset = explode('_', $GLOBALS['collation_connection']);
PMA_DBI_query("SET collation_connection = '" . PMA_sqlAddslashes($GLOBALS['collation_connection']) . "';", $link,
PMA_DBI_QUERY_STORE);
} else {
PMA_DBI_query("SET NAMES 'utf8' COLLATE 'utf8_general_ci';", $link, PMA_DBI_QUERY_STORE);
}
现在我的问题是我在librarys文件夹中没有(database_interface.lib.php)
我的xampp版本是3.2.2
最佳答案
我在任何插入和选择语句之前添加了以下代码,现在它可以工作了。
$ conn-> set_charset('utf8');
07-24 21:29