欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

PHP 设置MySQL连接字符集的方法

程序员文章站 2022-10-05 22:22:31
mysql_set_charset()。 这个函数是这样用的: mysql_set_charset('utf8', $link); 成功返回 true,失败返回 false...
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.