mysql_set_charset
(PHP 5 >= 5.2.3)
mysql_set_charset — Sets the client character set
说明
bool mysql_set_charset ( string $charset [, resource $link_identifier ] )
Sets the default character set for the current connection.
参数
charset
A valid character set name.
link_identifier
MySQL 连接。如不指定连接标识,则使用由 mysql_connect() 最近打开的连接。如果没有找到该连接,会尝试不带参数调用 mysql_connect() 来创建。如没有找到连接或无法建立连接,则会生成 E_WARNING 级别的错误。
返回值
成功时返回 TRUE, 或者在失败时返回 FALSE.
注释
Note:
This function requires MySQL 5.0.7 or later.
Note:
This is the preferred way to change the charset. Using mysql_query() to execute SET NAMES .. is not recommended.
参见
mysql_client_encoding() - 返回字符集的名称
» List of character sets that MySQL supports
--转自