Genera un valore UUID (Universally unique identifier).
Sintassi |
string create_uuid(bool sep = true) |
---|---|
sep |
Flag generazione UUID con seperatori interni (opzionale) |
Risultato |
Rende valore generato |
Esempio di utilizzo:
string uuid1 = create_uuid(); /* Restituisce valore tipo 550e8400-e29b-41d4-a716-446655440000 */ string uuid2 = create_uuid(); /* Restituisce valore tipo 550e8400e29b41d4a716446655440000 */ |