PHP 設定MySQL連線字符集的方法

2022-10-06 14:00:19 字數 366 閱讀 2942

mysql_set_charset()。

這個函式是這樣用的:

mysql_set_charwww.cppcns.comset('utf8', $link);

成功返回 true,失敗返回 false。

就這麼簡單。

下面是p程式設計客棧hp手冊原文

this is the preferred way to change the charset. using vxoirmysql_query() to execute set names .. is not recommended.

本文標題: php 設定mysql連線字符集的方法

本文位址: /wangluo/php/61196.html

mysql連線字符集

set names顯示客戶端傳送的sql語句中使用什麼字符集。因此,set names cp1251 語句告訴伺服器 將來從這個客戶端傳來的資訊採用字符集cp1251 它還為伺服器傳送回客戶端的結果指定了字符集。set names x 語句等價於執行下面三條語句 mysql set characte...

mysql字符集設定

show variables like char show variables like collation 2.修改編碼 set variable name value set character set connection utf8 3 顯示建立資料庫資訊 show create databa...

mysql 字符集設定

1.檢視mysql能夠支援的多種字符集 show character set 檢視mysql能夠支援的字符集的校對規則 show collation show collation like utf8 2.檢視當前字符集及校對 show variables like character set sho...