2024 年 PHP 大会日本站

mysqli::$errno

mysqli_errno

(PHP 5, PHP 7, PHP 8)

mysqli::$errno -- mysqli_errno返回最近函数调用的错误代码

描述

面向对象风格

过程式风格

mysqli_errno(mysqli $mysql): int

返回最近可能成功或失败的 MySQLi 函数调用的最后一个错误代码。

参数

mysql

仅过程式风格:由 mysqli_connect()mysqli_init() 返回的 mysqli 对象

返回值

如果上一次调用失败,则返回其错误代码值;零表示没有发生错误。

示例

示例 #1 $mysqli->errno 示例

面向对象风格

<?php
$mysqli
= new mysqli("localhost", "my_user", "my_password", "world");

/* 检查连接 */
if ($mysqli->connect_errno) {
printf("连接失败: %s\n", $mysqli->connect_error);
exit();
}

if (!
$mysqli->query("SET a=1")) {
printf("错误代码: %d\n", $mysqli->errno);
}

/* 关闭连接 */
$mysqli->close();
?>

过程式风格

<?php
$link
= mysqli_connect("localhost", "my_user", "my_password", "world");

/* 检查连接 */
if (mysqli_connect_errno()) {
printf("连接失败: %s\n", mysqli_connect_error());
exit();
}

if (!
mysqli_query($link, "SET a=1")) {
printf("错误代码: %d\n", mysqli_errno($link));
}

/* 关闭连接 */
mysqli_close($link);
?>

以上示例将输出

Errorcode: 1193

参见

添加备注

用户贡献的备注 1 条备注

erwin at transpontine dot com
11 年前
您还可以在这里找到例如 MySQL 5.5 的错误代码:https://dev.mysqlserver.cn/doc/refman/5.5/en/error-handling.html
To Top