(PHP 5, PHP 7)
mysqli::character_set_name -- mysqli_character_set_name — Returns the default character set for the database connection
Stil obiect-orientat
Stil procedural
Returns the current character set for the database connection.
link
Numai stilul procedural: Un identificator al legăturii întors de mysqli_connect() sau mysqli_init()
The default character set for the current connection
Example #1 mysqli::character_set_name() example
Stil obiect-orientat
<?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();
?>
Stil procedural
<?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);
?>
Exemplele de mai sus vor afișa:
Current character set is latin1_swedish_ci