cubrid_client_encoding
(PECL CUBRID >= 8.3.1)
cubrid_client_encoding — Return the current CUBRID connection charset
说明
This function returns the current CUBRID connection charset and is similar to the CUBRID function cubrid_get_charset().
参数
conn_identifier
The CUBRID connection. If the connection identifier is not specified, the last link opened by cubrid_connect() is assumed.
示例
示例 #1 cubrid_client_encoding() example
<?php
$con = cubrid_connect("localhost", 33000, "demodb");
if (!$con)
{
die('Could not connect.');
}
printf("CUBRID current charset: %s\n", cubrid_client_encoding($con));
?>
以上示例会输出:
CUBRID current charset: iso8859-1
+添加备注
用户贡献的备注
此页面尚无用户贡献的备注。
备份地址:http://www.lvesu.com/blog/php/function.cubrid-client-encoding.php