Return a character set object, with several properties:
<?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();
}
var_dump($mysqli -> get_charset());
$mysqli -> close();
?>
Look at example of procedural style at the bottom.
The get_charset() / mysqli_get_charset() function returns a character set object with several properties for the current character set.
$mysqli -> get_charset()
mysqli_get_charset(
connection)
;
Parameter | Description |
---|---|
connection | Required. Specifies the MySQL connection to use |
Return Value: | Returns a character set object with the following properties:
|
---|---|
PHP Version: | 5.1+ |
Return a character set object, with several properties:
<?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();
}
var_dump(mysqli_get_charset($con));
mysqli_close($con);
?>
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!