No cache version.

Caching disabled. Default setting for this page:enabled (code LNG204)
If the display is too slow, you can disable the user mode to view the cached version.

Rechercher une fonction PHP

mysqli::character_set_name

mysqli_character_set_name

(PHP 5, PHP 7)

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

PHP: mysqli::character_set_name - Manual Home of Manuel PHP  Contents Haut

Description

Object oriented style

mysqli::character_set_name ( void ) : string

Procedural style

mysqli_character_set_name ( mysqli $link ) : string

Returns the current character set for the database connection.

PHP: mysqli::character_set_name - Manual Home of Manuel PHP  Contents Haut

Parameters

link

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

PHP: mysqli::character_set_name - Manual Home of Manuel PHP  Contents Haut

Return Values

The default character set for the current connection

PHP: mysqli::character_set_name - Manual Home of Manuel PHP  Contents Haut

Examples

Example #1 mysqli::character_set_name() example

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

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

The above examples will output:

Current character set is latin1_swedish_ci

PHP: mysqli::character_set_name - Manual Home of Manuel PHP  Contents Haut

See Also

Find a PHP function
Error Infobrol

Can not display this page of the Infobrol website

Type of error (18-01)

Unknown format specifier "&"

Please try again in a few minutes…

Return to the home page




Steph