mysqli::$errno
mysqli_errno
(PHP 5, PHP 7, PHP 8)
mysqli::$errno -- mysqli_errno — 直近の関数コールによるエラーコードを返す
説明
オブジェクト指向型
手続き型
直近の MySQLi 関数のコールが成功あるいは失敗した際のエラーコードを返します。
戻り値
直近のコールが失敗した場合、エラーコードを返します。 ゼロは、何もエラーが発生しなかったことを示します。
例
例1 $mysqli->errno の例
オブジェクト指向型
<?php
$mysqli = new mysqli("localhost", "my_user", "my_password", "world");
/* 接続状況をチェックします */
if ($mysqli->connect_errno) {
printf("Connect failed: %s\n", $mysqli->connect_error);
exit();
}
if (!$mysqli->query("SET a=1")) {
printf("Errorcode: %d\n", $mysqli->errno);
}
/* 接続を閉じます */
$mysqli->close();
?>
手続き型
<?php
$link = mysqli_connect("localhost", "my_user", "my_password", "world");
/* 接続状況をチェックします */
if (mysqli_connect_errno()) {
printf("Connect failed: %s\n", mysqli_connect_error());
exit();
}
if (!mysqli_query($link, "SET a=1")) {
printf("Errorcode: %d\n", mysqli_errno($link));
}
/* 接続を閉じます */
mysqli_close($link);
?>
上の例の出力は以下となります。
Errorcode: 1193
参考
- mysqli_connect_errno() - 直近の接続コールに関するエラーコードを返す
- mysqli_connect_error() - 直近の接続エラーの説明を返す
- mysqli_error() - 直近のエラーの内容を文字列で返す
- mysqli_sqlstate() - 直前の MySQL の操作での SQLSTATE エラーを返す
+add a note
User Contributed Notes 1 note
erwin at transpontine dot com ¶
11 years ago
You can also find the error codes for for example MySQL 5.5 here: http://dev.mysql.com/doc/refman/5.5/en/error-handling.html
↑ and ↓ to navigate •
Enter to select •
Esc to close
Press Enter without
selection to search using Google