TokyoTyrant::num

(PECL tokyo_tyrant >= 0.1.0)

TokyoTyrant::numNumber of records in the database

Опис

public int TokyoTyrant::num ( void )

Returns the number of records in the database

Параметри

В цієї функції немає параметрів.

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

Returns number of records in the database

Приклади

Приклад #1 TokyoTyrant::num() example

<?php
/* Connect to a database on default port */
$tt = new TokyoTyrant("localhost");

/* Echo the number of records */
echo $tt->num();
?>

Наведений вище приклад виведе щось подібне до:

1234

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

add a note add a note

User Contributed Notes

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