PHP Portal » PHP Handbuch » mysqli::character_set_name

Werbung

mysqli::character_set_name


(PHP 5)

mysqli::character_set_name -- mysqli_character_set_nameReturns the default character set for the database connection

Beschreibung

Object oriented style (method):

string mysqli::character_set_name ( void )

Procedural style:

string mysqli_character_set_name ( mysqli $link )

Returns the current character set for the database connection.

Parameter-Liste

link

Nur bei prozeduralem Aufruf: Ein von mysqli_connect() oder mysqli_init() zurückgegebenes Verbindungsobjekt.

Rückgabewerte

The default character set for the current connection

Beispiele

PHP Code
1
2
3
4
5
6
7
8
9
10
11
/* Open a connection */ $mysqli = new mysqli("localhost", "my_user", "my_password", "world"); /* check connection */ if (mysqli_connect_errno()) { printf("Connect failed: %s\n", mysqli_connect_error()); exit(); } /* Print current character set */ $charset = $mysqli->character_set_name(); printf("Current character set is %s\n", $charset); $mysqli->close();

PHP Code
1
2
3
4
5
6
7
8
9
10
11
12
/* Open a connection */ $link = mysqli_connect("localhost", "my_user", "my_password", "world"); /* check connection */ if (!$link) { printf("Connect failed: %s\n", mysqli_connect_error()); exit(); } /* Print current character set */ $charset = mysqli_character_set_name($link); printf("Current character set is %s\n",$charset); /* close connection */ mysqli_close($link);

Das oben gezeigte Beispiel erzeugt folgende Ausgabe:

Current character set is latin1_swedish_ci

Siehe auch