PHP Velho Oeste 2024

TokyoTyrant::num

(PECL tokyo_tyrant >= 0.1.0)

TokyoTyrant::numNumber of records in the database

Descrição

public TokyoTyrant::num ( void ) : int

Returns the number of records in the database

Parâmetros

Esta função não possui parâmetros.

Valor Retornado

Returns number of records in the database

Exemplos

Exemplo #1 TokyoTyrant::num() example

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

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

O exemplo acima irá imprimir algo similar à:

1234

Veja Também

add a note add a note

User Contributed Notes

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