首页 > 数据库 > MySQL > 正文

使用php 5时MySQL返回乱码的解决办法

2024-07-24 12:57:05
字体:
来源:转载
供稿:网友

在使用 php 5 中,通过 mysql 查询得到的值全部成为 '???????',原来是字符集设错了。

我在安装 mysql 5 时,已经选择默认字符集为 gb2312,但还是返回乱码,解决的办法是在连接 mysql 服务器后,调用一个与所设字符集相同的 "set names x" 语句(x 为你所设的字符集)。下面是我的连接函数:

function sql_connect() {
 global $mysql_host, $mysql_user, $mysql_password, $mysql_database;

 $connection = @mysql_connect($mysql_host, $mysql_user, $mysql_password) or startuperror('<p>could not connect to mysql database.</p>','connect error');
 if (!mysql_select_db($mysql_database))
 {
  include'install.php';
  doinstall();
  mysql_select_db($mysql_database) or startuperror('<p>could not select database: '. mysql_error().'</p>', 'connect error');
 }
 sql_query('set names "gb2312"');    //sql_query是一个自定义的执行查询函数,关键是这个语句
 return $connection;
}

国内最大的酷站演示中心!
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表