mysql_num_rows

(PHP 4, PHP 5)

mysql_num_rowsGet number of rows in result

Увага

Це розширення застаріле, починаючи з PHP 5.5.0, та вилучене з PHP 7.0.0. Натомість використовуються розширення MySQLi або PDO_MySQL. Докладніше описано у керівництві MySQL: вибір API. Цю функцію можна замінити на:

Опис

mysql_num_rows(resource $result): int|false

Retrieves the number of rows from a result set. This command is only valid for statements like SELECT or SHOW that return an actual result set. To retrieve the number of rows affected by a INSERT, UPDATE, REPLACE or DELETE query, use mysql_affected_rows().

Параметри

result

Результат типу resource для опрацювання, якого повертає функція mysql_query().

Значення, що повертаються

The number of rows in a result set on success або false в разі помилки.

Приклади

Приклад #1 mysql_num_rows() example

<?php

$link
= mysql_connect("localhost", "mysql_user", "mysql_password");
mysql_select_db("database", $link);

$result = mysql_query("SELECT * FROM table1", $link);
$num_rows = mysql_num_rows($result);

echo
"$num_rows Rows\n";

?>

Примітки

Зауваження:

If you use mysql_unbuffered_query(), mysql_num_rows() will not return the correct value until all the rows in the result set have been retrieved.

Зауваження:

Для зворотньої сумісності, можна використовувати такий застарілий псевдонім: mysql_numrows()

Прогляньте також

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top