File tree Expand file tree Collapse file tree 1 file changed +15
-1
lines changed
Expand file tree Collapse file tree 1 file changed +15
-1
lines changed Original file line number Diff line number Diff line change @@ -126,7 +126,7 @@ putenv('MY_APP_SETTINGS=/path/to/config/file.php');
126126
127127
128128### ` UUID `
129- Class UUID generates Universally Unique Identifiers following the [ RFC 4122] [ rfc-4122 ] .
129+ Class UUID generates ` Universally Unique Identifiers ` following the [ RFC 4122] [ rfc-4122 ] .
130130
131131- ` v1($address = null): string `
132132- ` v3(string $namespace, $name): string `
@@ -137,6 +137,20 @@ Class UUID generates Universally Unique Identifiers following the [RFC 4122][rfc
137137- ` toBase64(string $uuid): string `
138138- ` fromBase64(string $base64): string `
139139
140+ ### ` ULID `
141+ Class ULID generates ` Universally Unique Lexicographically Sortable Identifiers `
142+
143+ - ` generate(int $count = 1): self `
144+ - ` fromULID(string $ulid): self `
145+ - ` fromUUID(string $ulid): self `
146+ - ` fromTimestamp(float $timestamp): self `
147+ - ` fromDateTime(string $datetime): self `
148+ - ` toULID(): array|string `
149+ - ` toUUID(): array|string `
150+ - ` toDateTime(): array|DateTime `
151+ - ` count(): int `
152+ - ` valid(string $uuid): bool `
153+
140154Functions
141155---------
142156``` php
You can’t perform that action at this time.
0 commit comments