PHP Velho Oeste 2024

TokyoTyrantTable::genUid

(PECL tokyo_tyrant >= 0.1.0)

TokyoTyrantTable::genUidGenerate unique id

Descrição

public TokyoTyrantTable::genUid ( void ) : int

Generates an unique id inside the table database. In table databases rows are referenced using a numeric primary key.

Parâmetros

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

Valor Retornado

Returns an unique id or throws TokyoTyrantException on error

Exemplos

Exemplo #1 TokyoTyrantTable::genUid() example

<?php
$tt 
= new TokyoTyrantTable("localhost"1122);

echo 
$tt->genUid();
?>

O exemplo acima irá imprimir algo similar à:

4

Veja Também

add a note add a note

User Contributed Notes

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