TokyoTyrant::num
(PECL tokyo_tyrant >= 0.1.0)
TokyoTyrant::num — Number of records in the database
Descripción
public int TokyoTyrant::num
( void
)
Returns the number of records in the database
Parámetros
Esta función no tiene parámetros.
Valores devueltos
Returns number of records in the database
Ejemplos
Ejemplo #1 TokyoTyrant::num() example
<?php
/* Connect to a database on default port */
$tt = new TokyoTyrant("localhost");
/* Echo the number of records */
echo $tt->num();
?>
El resultado del ejemplo sería algo similar a:
1234