PHP Doku:: Returns the default character set for the database connection - function.maxdb-character-set-name.html

Verlauf / Chronik / History: (1) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzDatenbankerweiterungenAnbieterspezifische DatenbankerweiterungenMaxDBMaxDB Funktionenmaxdb_character_set_name -- maxdb::character_set_name

Ein Service von Reinhard Neidl - Webprogrammierung.

MaxDB Funktionen

<<maxdb_change_user -- maxdb::change_user

maxdb_client_encoding>>

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

Beschreibung

Prozeduraler Stil

string maxdb_character_set_name ( resource $link )

Objektorientierter Stil

string maxdb::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

Beispiel #1 Object oriented style

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

Beispiel #2 Procedural style

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

Das oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie:

Current character set is ascii

Siehe auch


Keine BenutzerBeiträge.
- Beiträge aktualisieren...



PHP Powered Diese Seite bei php.net
The PHP manual text and comments are covered by the Creative Commons Attribution 3.0 License © the PHP Documentation Group - Impressum - mail("TO:Reinhard Neidl",...)