mysqli::character_set_name

(PHP 5, PHP 7)
Returns the default character set for the database connection
string mysqli::character_set_name ( void )

Object oriented style

Procedural style

string mysqli_character_set_name ( mysqli $link )

Returns the current character set for the database connection.

Parameters:
link

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

Returns:

The default character set for the current connection

Examples:
mysqli::character_set_name() example

Object oriented style

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?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

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?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
See also:

mysqli_set_charset() -

mysqli_client_encoding() -

mysqli_real_escape_string() -

doc_php
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.