changing doc format and HTML literals

This commit is contained in:
udo
2026-04-22 01:56:46 +00:00
parent 8223dcc6b3
commit f7b066b374
123 changed files with 1917 additions and 1611 deletions
+7 -6
View File
@@ -5,12 +5,13 @@ u64 time_parse(String time_string)
time_string : a string containing a date and/or time in text form
return value : the interpreted 'time_string' as a Unix timestamp
:desc
Attempts to parse the given 'time_string' into a Unix timestamp.
:see
>time
:related
**PHP:** `strtotime()` or `DateTimeImmutable` parsing
**JavaScript / Node.js:** `Date.parse()` or date-library parsing helpers
:content
Attempts to parse `time_string` into a Unix timestamp.
Related:
- PHP: `strtotime()` or `DateTimeImmutable` parsing
- JavaScript / Node.js: `Date.parse()` or date-library parsing helpers