Рекурсивный акроним словосочетания «PHP: Hypertext Preprocessor»
Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетили 17111 программистов и 1772 робота. Сейчас ищут 2056 программистов ...
MysqlndUhConnection::getFieldCount - Returns the number of columns for the most recent query
Вернуться к: MysqlndUhConnection
MysqlndUhConnection::getFieldCount
(PECL mysqlnd-uh >= 1.0.0-alpha)
MysqlndUhConnection::getFieldCount — Returns the number of columns for the most recent query
Описание
public int MysqlndUhConnection::getFieldCount
( mysqlnd_connection
$connection
)Returns the number of columns for the most recent query.
Список параметров
-
connection
-
Mysqlnd connection handle. Do not modify!
Возвращаемые значения
Number of columns.
Примеры
MysqlndUhConnection::getFieldCount() is not only executed after the invocation of a user space API call which maps directly to it but also called internally.
Пример #1 MysqlndUhConnection::getFieldCount() example
<?php
class proxy extends MysqlndUhConnection {
public function getFieldCount($res) {
printf("%s(%s)\n", __METHOD__, var_export(func_get_args(), true));
$ret = parent::getFieldCount($res);
printf("%s returns %s\n", __METHOD__, var_export($ret, true));
return $ret;
}
}
mysqlnd_uh_set_connection_proxy(new proxy());
$mysqli = new mysqli("localhost", "root", "", "test");
$mysqli->query("WILL_I_EVER_LEARN_SQL?");
var_dump($mysqli->field_count);
$mysqli->query("SELECT 1, 2, 3 FROM DUAL");
var_dump($mysqli->field_count);
?>
Результат выполнения данного примера:
proxy::getFieldCount(array ( 0 => NULL, )) proxy::getFieldCount returns 0 int(0) proxy::getFieldCount(array ( 0 => NULL, )) proxy::getFieldCount returns 3 proxy::getFieldCount(array ( 0 => NULL, )) proxy::getFieldCount returns 3 int(3)
Смотрите также
- mysqlnd_uh_set_connection_proxy() - Installs a proxy for mysqlnd connections
- mysqli_field_count() - Возвращает число столбцов, затронутых последним запросом
Вернуться к: MysqlndUhConnection