(PECL CUBRID >= 8.3.1)
cubrid_client_encoding — 返回当前 CUBRID 连接字符集
此函数返回当前 CUBRID 连接字符集,类似于 CUBRID 函数 cubrid_get_charset().
示例 #1 cubrid_client_encoding() 示例
<?php
$con = cubrid_connect("localhost", 33000, "demodb");
if (!$con)
{
die('无法连接.');
}
printf("CUBRID 当前字符集:%s\n", cubrid_client_encoding($con));
?>
以上示例将输出
CUBRID current charset: iso8859-1