cleanup, docs

This commit is contained in:
root
2026-06-16 12:21:31 +00:00
parent dff1959341
commit ea08d5f28b
296 changed files with 1571 additions and 1940 deletions
+2 -3
View File
@@ -12,7 +12,6 @@ Creates and returns a new session ID.
This helper is useful when you need to generate a session token directly rather than starting a full session flow with `session_start()`.
Related:
- PHP: `session_create_id()` or custom session token generators
- JavaScript / Node.js: `crypto.randomUUID()` or custom secure session ID generation
:example
print(session_id_create().length() > 0 ? "session id\n" : "empty\n");