PHP mysqli::$errno / mysqli_errno() 函数返回最近 MySQLi 函数的最后一个错误代码调用可能成功也可能失败。
语法
//面向对象风格
$mysqli->errno;
//面向过程风格
mysqli_errno(mysql)
参数
mysql | 必填。 仅适用于面向过程风格:指定 mysqli_connect() 或 mysqli_init() 返回的 mysqli 对象。 |
返回值
如果上次调用失败,则返回错误代码值。零表示没有发生错误。
示例:面向对象风格
下面的示例显示了 mysqli::$errno 属性的用法。
<?php
//建立与数据库的连接
$mysqli = new mysqli("localhost", "user", "password", "database");
if ($mysqli->connect_errno) {
echo "Failed to connect to MySQL: ". $mysqli->connect_error;
exit();
}
//执行SQL查询
$sql = "SET x=1";
if (!$mysqli->query($sql)) {
printf("Error code: %d\n", $mysqli->errno);
}
//关闭连接
$mysqli->close();
?>
上述代码的输出将类似于:
Error code: 1193
示例:面向过程风格
下面的示例显示mysqli_errno的用法() 函数。
<?php
//建立与数据库的连接
$mysqli = mysqli_connect("localhost", "user", "password", "database");
if (mysqli_connect_errno()) {
echo "Failed to connect to MySQL: ". mysqli_connect_error();
exit();
}
//执行SQL查询
$sql = "SET x=1";
if (!mysqli_query($mysqli, $sql)) {
printf("Error code: %d\n", mysqli_errno($mysqli));
}
//关闭连接
mysqli_close($mysqli);
?>
上述代码的输出将类似于:
Error code: 1193