定義和用法
這個mysqli_set_charset()函數用於指定從mysqli客戶端向數據庫服務器發送數據的默認字符集。
用法
mysqli_set_charset($con, charset)
參數
Sr.No | 參數及說明 |
---|---|
1 |
con(Mandatory) 這是一個表示與 MySQL 服務器的連接的對象。 |
2 |
charset(Mandatory) 您需要設置為默認的字符集的名稱。 |
返回值
mysqli_set_charset() 函數在成功時返回真,如果失敗則返回假。
PHP版本
這個函數最初是在 PHP 版本 5 中引入的,適用於所有後續版本。
示例
以下示例演示了 mysqli_set_charset() 函數的用法(程序風格) -
<?php
//Creating a connection
$con = mysqli_connect("localhost", "root", "password", "mydb");
//Name of the character set
$res = mysqli_set_charset($con, "utf8");
print_r($res);
//Closing the connection
mysqli_close($con);
?>
這將產生以下結果 -
1
示例
在麵向對象的風格中,這個函數的語法是 $con->set_charset();以下是麵向對象樣式 $minus 中此函數的示例;
<?php
$con = new mysqli("localhost", "root", "password", "test");
//Name of the character set
$res = $con->set_charset("utf8");
print($res);
//Closing the connection
$con -> close();
?>
這將產生以下結果 -
1
示例
<?php
$connection_mysql = mysqli_connect("localhost","root","password","mydb");
if (mysqli_connect_errno($connection_mysql)){
echo "Failed to connect to MySQL:" . mysqli_connect_error();
}
mysqli_set_charset($connection_mysql,"utf8");
echo mysqli_character_set_name($connection_mysql);
mysqli_close($connection_mysql);
?>
這將產生以下結果 -
utf8
相關用法
- PHP mysqli_select_db()用法及代碼示例
- PHP mysqli_stmt_affected_rows()用法及代碼示例
- PHP mysqli_stmt_fetch()用法及代碼示例
- PHP mysqli_stmt_data_seek()用法及代碼示例
- PHP mysqli_stmt_free_result()用法及代碼示例
- PHP mysqli_stmt_error()用法及代碼示例
- PHP mysqli_stmt_field_count()用法及代碼示例
- PHP mysqli_stmt_errno()用法及代碼示例
- PHP mysqli_stmt_get_result()用法及代碼示例
- PHP mysqli_stmt_init()用法及代碼示例
- PHP mysqli_stmt_bind_result()用法及代碼示例
- PHP mysqli_stat()用法及代碼示例
- PHP mysqli_stmt_store_result()用法及代碼示例
- PHP mysqli_stmt_reset()用法及代碼示例
- PHP mysqli_stmt_attr_get()用法及代碼示例
- PHP mysqli_stmt_param_count()用法及代碼示例
- PHP mysqli_stmt_attr_set()用法及代碼示例
- PHP mysqli_stmt_prepare()用法及代碼示例
- PHP mysqli_stmt_sqlstate()用法及代碼示例
- PHP mysqli_stmt_bind_param()用法及代碼示例
注:本文由純淨天空篩選整理自 PHP mysqli_set_charset() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。