Forum und email

mysqli_character_set_name

mysqli->character_set_name()

(PHP 5)

mysqli->character_set_name() — Returns the default character set for the database connection

Beschreibung

Procedural style:

string mysqli_character_set_name ( mysqli $link )

Object oriented style (method):

mysqli
string character_set_name ( void )

Returns the current character set for the database connection.

Parameter Liste

link

Procedural style only: A link identifier returned by mysqli_connect() or mysqli_init()

Rückgabewerte

The default character set for the current connection

Beispiele

Example#1 Object oriented style

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

Example#2 Procedural style

<?php
/* 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