mysqli::character_set_name
mysqli_character_set_name
(PHP 5)
mysqli::character_set_name -- mysqli_character_set_name — Devuelve el juego de caracteres predeterminado para la conexión a base de datos
Descripción
Estilo orientado a objetos
string mysqli::character_set_name
( void
)
Estilo por procesos
Devuelve el juego de caracteres actual para la conexión a la base de datos.
Parámetros
- link
-
Sólo estilo procedimental: Un identificador de enlace devuelto por mysqli_connect() o mysqli_init()
Valores devueltos
El juego de caracteres predeterminado para la conexión actual
Ejemplos
Example #1 Ejemplo del método mysqli::character_set_name()
Estilo orientado a objetos
<?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();
?>
Estilo por procesos
<?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);
?>
El resultado de los ejemplos serían:
Current character set is latin1_swedish_ci
Ver también
- mysqli_client_encoding() - Alias de mysqli_character_set_name
- mysqli_real_escape_string() - Escapes special characters in a string for use in an SQL statement, taking into account the current charset of the connection
There are no user contributed notes for this page.
