|
 |
maxdb_character_set_name (PECL) maxdb_character_set_name (no version information, might be only in CVS) maxdb->character_set_name -- Returns the default character set for the database connection DescriptionProcedural style: string maxdb_character_set_name ( resource link ) Object oriented style (method): class maxdb { string character_set_name ( void ) }
Returns the current character set for the database connection specified by the
link parameter.
Return valuesThe default character set for the current connection, either ascii or unicode. ExampleПример 1. Object oriented style
<?php
$maxdb = new maxdb("localhost", "MONA", "RED", "DEMODB");
if (maxdb_connect_errno()) {
printf("Connect failed: %s\n", maxdb_connect_error());
exit();
}
$charset = $maxdb->character_set_name();
printf ("Current character set is %s\n", $charset);
$maxdb->close();
?>
|
|
Пример 2. Procedural style
<?php
$link = maxdb_connect("localhost", "MONA", "RED", "DEMODB");
if (!$link) {
printf("Connect failed: %s\n", maxdb_connect_error());
exit();
}
$charset = maxdb_character_set_name($link);
printf ("Current character set is %s\n",$charset);
maxdb_close($link);
?>
|
|
The above examples would be produce the following output:
Current character set is ascii |
maxdb_character_set_name
There are no user contributed notes for this page.
| |