|
maxdb_num_rowsmaxdb::num_rowsGets the number of rows in a result BeschreibungProzeduraler Stil
int maxdb_num_rows
( resource
$result
)Objektorientierter Stil int$maxdb->num_rows;
Returns the number of rows in the result set. The use of maxdb_num_rows depends on whether you use buffered or unbuffered result sets. In case you use unbuffered resultsets maxdb_num_rows will not correct the correct number of rows until all the rows in the result have been retrieved. RückgabewerteReturns number of rows in the result set.
BeispieleBeispiel #1 Objektorientierter Stil
<?phpBeispiel #2 Prozeduraler Stil
<?phpDas oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie: Result set has 15 rows. Siehe auch
|