PHP 设置MySQL连接字符集的方法
更新时间:2011年01月02日 13:55:42 作者:
我之前总是使用 mysql_query("SET NAMES 'utf8'"); 来设置 MySQL 的默认连接字符集;但是今天发现了一个 PHP 推荐的代替这个方法的设置 MySQL 连接字符集的函数
mysql_set_charset()。
这个函数是这样用的:
mysql_set_charset('utf8', $link);
成功返回 TRUE,失败返回 FALSE。
就这么简单。
下面是PHP手册原文
This is the preferred way to change the charset. Using mysql_query() to execute SET NAMES .. is not recommended.
这个函数是这样用的:
mysql_set_charset('utf8', $link);
成功返回 TRUE,失败返回 FALSE。
就这么简单。
下面是PHP手册原文
This is the preferred way to change the charset. Using mysql_query() to execute SET NAMES .. is not recommended.
相关文章
学习php设计模式 php实现合成模式(composite)
这篇文章主要介绍了php设计模式中的合成模式,使用php实现合成模式,感兴趣的小伙伴们可以参考一下2015-12-12PHP has encountered an Access Violation 错误的解决方法
一般是因为eaccelerator的问题,windows下容易出现这个问题。2010-01-01
最新评论