Werbung
maxdb_character_set_name
(PECL maxdb >= 1.0)
maxdb_character_set_name -- maxdb->character_set_name — Returns the default character set for the database connection
Beschreibung
Procedural style:
string maxdb_character_set_name
( resource $link
)
Object oriented style (method):
maxdb
string
character_set_name
( void
)
Returns the current character set for the database connection specified by the link parameter.
Rückgabewerte
The default character set for the current connection, either ascii or unicode.
Beispiele
PHP Code
1
2
3
4
5
6
7
8
9
10
11
2
3
4
5
6
7
8
9
10
11
/* 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();
PHP Code
1
2
3
4
5
6
7
8
9
10
11
2
3
4
5
6
7
8
9
10
11
$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);
Das oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie:
Current character set is ascii
Siehe auch
- maxdb_client_encoding() - Alias von maxdb_character_set_name
- maxdb_real_escape_string() - Escapes special characters in a string for use in a SQL statement, taking into account the current charset of the connection