PHP Velho Oeste 2024

msql_num_rows

(PHP 4, PHP 5 < 5.3.0)

msql_num_rowsGibt die Anzahl der Zeilen in einem Abfrageergebnis zurück

Beschreibung

msql_num_rows ( resource $query_identifier ) : int

msql_num_rows() gibt die Anzahl der Zeilen in einem Abfrageergebnis zurück.

Parameter-Liste

Ergebnis

Das Ergebnis Ressource, das ausgewertet wird. Dieses Ergebnis kommt von einem Aufruf von msql_query().

Rückgabewerte

Gibt die Anzahl der Zeilen in einem Abfrageergebnis zurück.

Siehe auch

add a note add a note

User Contributed Notes 1 note

up
-25
dd at hibm dot org
15 years ago
If you would like to just find out how many rows are returned by a query without actually using the results, then it's much more efficient to use SQL count function (specially for large tables with millions of rows).

<?php

$sql
= "SELECT COUNT(indexed-field) AS cnt FROM some-table";
$r = mysql_query($sql);
$row = mysql_fetch_object($r);
echo
$row->cnt;
?>
To Top