Рекурсивный акроним словосочетания «PHP: Hypertext Preprocessor»
Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетили 17030 программистов и 1770 роботов. Сейчас ищут 1972 программиста ...
MysqlndUhConnection::getErrorNumber - Returns the error code for the most recent function call
Вернуться к: MysqlndUhConnection
MysqlndUhConnection::getErrorNumber
(PECL mysqlnd-uh >= 1.0.0-alpha)
MysqlndUhConnection::getErrorNumber — Returns the error code for the most recent function call
Описание
public int MysqlndUhConnection::getErrorNumber
( mysqlnd_connection
$connection
)Returns the error code for the most recent function call.
Список параметров
-
connection
-
Mysqlnd connection handle. Do not modify!
Возвращаемые значения
Error code for the most recent function call.
Примеры
MysqlndUhConnection::getErrorNumber() is not only executed after the invocation of a user space API call which maps directly to it but also called internally.
Пример #1 MysqlndUhConnection::getErrorNumber() example
<?php
class proxy extends MysqlndUhConnection {
public function getErrorNumber($res) {
printf("%s(%s)\n", __METHOD__, var_export(func_get_args(), true));
$ret = parent::getErrorNumber($res);
printf("%s returns %s\n", __METHOD__, var_export($ret, true));
return $ret;
}
}
mysqlnd_uh_set_connection_proxy(new proxy());
printf("connect...\n");
$mysqli = new mysqli("localhost", "root", "", "test");
printf("query...\n");
$mysqli->query("PLEASE_LET_THIS_BE_INVALID_SQL");
printf("errno...\n");
var_dump($mysqli->errno);
printf("close...\n");
$mysqli->close();
?>
Результат выполнения данного примера:
connect... proxy::getErrorNumber(array ( 0 => NULL, )) proxy::getErrorNumber returns 0 query... errno... proxy::getErrorNumber(array ( 0 => NULL, )) proxy::getErrorNumber returns 1064 int(1064) close...
Смотрите также
- mysqlnd_uh_set_connection_proxy() - Installs a proxy for mysqlnd connections
- MysqlndUhConnection::getErrorString() - Returns a string description of the last error
- mysqli_errno() - Возвращает код ошибки последнего вызова функции
- mysql_errno() - Возвращает численный код ошибки выполнения последней операции с MySQL
Вернуться к: MysqlndUhConnection