| I. | Na początek | |
| II. | Instalacja i konfiguracja | |
| III. | Opis języka | |
| IV. | Bezpieczeństwo | |
| V. | Możliwości | |
| VI. | Opis funkcji | |
| VII. | Zend API | |
| VIII. | PHP API: Interfejs rozszerzeń | |
| X. | Dodatki | |
Copyright © 1997-2006 the PHP Documentation Group
Procedural style:
mixed mysqli_num_rows ( mysqli result )Object oriented style (property):
class mysqli {Returns the number of rows in the result set.
The use of mysqli_num_rows() depends on whether you use buffered or unbuffered result sets. In case you use unbuffered resultsets mysqli_num_rows() will not correct the correct number of rows until all the rows in the result have been retrieved.
Returns number of rows in the result set.
Notatka: If the number of rows is greater than maximal int value, the number will be returned as a string.
Przykład 2. Procedural style
|
Powyższy przykład wyświetli:
Result set has 239 rows. |
| Poprzedni | Spis treści | Następny |
| mysqli_num_fields | Początek rozdziału | mysqli_options |