PHP mysqli_get_charset() 函数
PHP mysqli_get_charset() 函数
实例
返回带有属性的字符集对象:
<?php
$con=mysqli_connect("localhost","my_user","my_password","my_db");
// 检测连接
if (mysqli_connect_errno($con))
{
echo "数据库连接失败: " . 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 "数据库连接失败: " . mysqli_connect_error();
}
var_dump(mysqli_get_charset($con));
mysqli_close($con);
?>
定义和用法
mysqli_get_charset() 函数返回字符集对象。
语法
mysqli_get_charset(connection);
参数 | 描述 |
---|---|
connection | 必需。规定要使用的 MySQL 连接。 |
技术细节
返回值: | 返回带有下列属性的字符集对象:
|
---|---|
PHP 版本: | 5.1+ |
PHP MySQLi 参考手册
相关文章
- PHP 变量
- PHP 常量
- PHP 数组排序
- PHP 函数
- PHP 命名空间 namespace
- PHP $_POST 变量
- PHP 包含文件 include 和 require 语句
- PHP 文件上传
- PHP Secure E-mails
- PHP array_change_key_case() 函数
- PHP array_diff_assoc() 函数
- PHP array_fill() 函数
- PHP array_intersect_key() 函数
- PHP array_key_first() 函数
- PHP array_push() 函数
- PHP array_rand() 函数
- PHP array_udiff() 函数
- PHP uasort() 函数
- PHP usort() 函数
- PHP 5 Filesystem 函数