mysqli::character_set_name

mysqli_character_set_name

(PHP 5, PHP 7, PHP 8)

mysqli::character_set_name -- mysqli_character_set_name返回當(dāng)前數(shù)據(jù)庫(kù)連接的默認(rèn)字符編碼

說(shuō)明

面向?qū)ο箫L(fēng)格

mysqli::character_set_name(): string

過(guò)程化風(fēng)格

mysqli_character_set_name(mysqli $link): string

返回當(dāng)前數(shù)據(jù)庫(kù)連接的默認(rèn)字符編碼。

參數(shù)

mysql

僅以過(guò)程化樣式:由mysqli_connect()mysqli_init() 返回的 mysqli 對(duì)象。

返回值

The default character set for the current connection

范例

示例 #1 mysqli::character_set_name() example

面向?qū)ο箫L(fēng)格

<?php
/* Open a connection */
$mysqli = new mysqli("localhost""my_user""my_password""world");

/* check connection */
if (mysqli_connect_errno()) {
    
printf("Connect failed: %s\n"mysqli_connect_error());
    exit();
}

/* Print current character set */
$charset $mysqli->character_set_name();
printf ("Current character set is %s\n"$charset);

$mysqli->close();
?>

過(guò)程化風(fēng)格

<?php
/* Open a connection */
$link mysqli_connect("localhost""my_user""my_password""world");

/* check connection */
if (!$link) {
    
printf("Connect failed: %s\n"mysqli_connect_error());
    exit();
}

/* Print current character set */
$charset mysqli_character_set_name($link);
printf ("Current character set is %s\n",$charset);

/* close connection */
mysqli_close($link);
?>

以上例程會(huì)輸出:

Current character set is latin1_swedish_ci

參見(jiàn)

  • mysqli_set_charset() - 設(shè)置默認(rèn)字符編碼
  • mysqli_client_encoding()
  • mysqli_real_escape_string() - 根據(jù)當(dāng)前連接的字符集,對(duì)于 SQL 語(yǔ)句中的特殊字符進(jìn)行轉(zhuǎn)義