Return the default character set for the database connection:
<?php
$mysqli = new mysqli("localhost","my_user","my_password","my_db");
if ($mysqli -> connect_errno) {
echo "Failed to connect to MySQL: " . $mysqli -> connect_error;
exit();
}
$charset = $mysqli -> character_set_name();
echo "Default character set is: " . $charset;
$mysqli -> close();
?>
Look at example of procedural style at the bottom.
The character_set_name() / mysqli_character_set_name() function returns the default character set for the database connection.
$mysqli -> character_set_name()
mysqli_character_set_name(
connection)
Parameter | Description |
---|---|
connection | Required. Specifies the MySQL connection to use |
Return Value: | The default character set for the specified connection |
---|---|
PHP Version: | 5+ |
Return the default character set for the database connection:
<?php
$con=mysqli_connect("localhost","my_user","my_password","my_db");
if (mysqli_connect_errno()) {
echo "Failed to connect to MySQL: " . mysqli_connect_error();
exit();
}
$charset=mysqli_character_set_name($con);
echo "Default character set is: " . $charset;
mysqli_close($con);
?>
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!