update : 2015.11.03
php.shukuma.com

검색:
 
 
Returns the default character set for the database connection

maxdb_character_set_name

maxdb::character_set_name

(PECL maxdb >= 1.0)

maxdb_character_set_name -- maxdb::character_set_nameReturns the default character set for the database connection

설명

절차식 형식

string maxdb_character_set_name ( resource $link )

객체 기반 형식

string maxdb::character_set_name ( void )

Returns the current character set for the database connection specified by the link parameter.

반환값

The default character set for the current connection, either ascii or unicode.

예제

Example #1 객체 기반 형식

<?php
/* Open a connection */
$maxdb = new maxdb("localhost""MONA""RED""DEMODB");

/* check connection */
if (maxdb_connect_errno()) {
   
printf("Connect failed: %s\n"maxdb_connect_error());
   exit();
}

/* Print current character set */
$charset $maxdb->character_set_name();
printf ("Current character set is %s\n"$charset);

$maxdb->close();
?>

Example #2 절차식 형식

<?php
$link 
maxdb_connect("localhost""MONA""RED""DEMODB");

/* check connection */
if (!$link) {
   
printf("Connect failed: %s\n"maxdb_connect_error());
   exit();
}

/* Print current character set */
$charset maxdb_character_set_name($link);
printf ("Current character set is %s\n",$charset);

/* close connection */
maxdb_close($link);
?>

위 예제의 출력 예시:

Current character set is ascii

참고