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
+4 -3
View File
@@ -12,7 +12,8 @@ Deletes the cookie specified by `session_name` and clears the data stored under
This also empties `context.session_id` and `context.session`.
Related:
- PHP: `session_destroy()`
- JavaScript / Node.js: Express session store teardown or manual cookie-session invalidation
:example
String id = session_start("uce-doc-example-destroy");
session_destroy("uce-doc-example-destroy");
print(id != "" ? "destroyed\n" : "empty\n");