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

Opis

Styl proceduralny

maxdb_character_set_name ( resource $link ) : string

Styl obiektowy

maxdb::character_set_name ( void ) : string

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

Zwracane wartości

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

Przykłady

Przykład #1 Styl obiektowy

<?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();
?>

Przykład #2 Styl proceduralny

<?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);
?>

Powyższy przykład wyświetli coś podobnego do:

Current character set is ascii

Zobacz też:

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top