Рекурсивный акроним словосочетания «PHP: Hypertext Preprocessor»
Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетили 17233 программиста и 1835 роботов. Сейчас ищут 1558 программистов ...
DB_result::numCols()
Вернуться к: DB
DB_result::numCols()
DB_result::numCols() – Gets number of columns in a result set
Synopsis
integer numCols ( )
Get the number of columns of the rows in a result set.
Return value
integer - number of columns or a DB_Error object on failure
Note
This function can not be called statically.
Example
Using numCols()
<?php
// Once you have a valid DB object named $db...
$res =& $db->query('SELECT * FROM phptest');
echo $res->numCols();
?>
See
Вернуться к: DB