PHP mysqli_get_charset() 函數(shù)
PHP mysqli_get_charset() 函數(shù)
實例
返回帶有屬性的字符集對象:
<?php
$con=mysqli_connect("localhost","my_user","my_password","my_db");
// 檢測連接
if (mysqli_connect_errno($con))
{
echo "數(shù)據(jù)庫連接失敗: " . mysqli_connect_error();
}
var_dump(mysqli_get_charset($con));
mysqli_close($con);
?>
$con=mysqli_connect("localhost","my_user","my_password","my_db");
// 檢測連接
if (mysqli_connect_errno($con))
{
echo "數(shù)據(jù)庫連接失敗: " . mysqli_connect_error();
}
var_dump(mysqli_get_charset($con));
mysqli_close($con);
?>
定義和用法
mysqli_get_charset() 函數(shù)返回字符集對象。
語法
mysqli_get_charset(connection);
參數(shù) | 描述 |
---|---|
connection | 必需。規(guī)定要使用的 MySQL 連接。 |
技術(shù)細(xì)節(jié)
返回值: | 返回帶有下列屬性的字符集對象:
|
---|---|
PHP 版本: | 5.1+ |

相關(guān)文章
- PHP 變量
- PHP 常量
- PHP 數(shù)組排序
- PHP 函數(shù)
- PHP 命名空間 namespace
- PHP $_POST 變量
- PHP 包含文件 include 和 require 語句
- PHP 文件上傳
- PHP Secure E-mails
- PHP array_change_key_case() 函數(shù)
- PHP array_diff_assoc() 函數(shù)
- PHP array_fill() 函數(shù)
- PHP array_intersect_key() 函數(shù)
- PHP array_key_first() 函數(shù)
- PHP array_push() 函數(shù)
- PHP array_rand() 函數(shù)
- PHP array_udiff() 函數(shù)
- PHP uasort() 函數(shù)
- PHP usort() 函數(shù)
- PHP 5 Filesystem 函數(shù)