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
+3 -3
View File
@@ -19,7 +19,7 @@ After `session_start()` completes, the following `context` fields are populated:
- `context.session_name` contains the current session cookie name.
- `context.session` contains the current session data. The session data is automatically saved after the request completes.
Related:
- PHP: `session_start()`
- JavaScript / Node.js: Express `express-session`, `cookie-session`, or similar request-bound session middleware
:example
String id = session_start("uce-doc-example");
print(id != "" ? "started\n" : "empty\n");