date = now();
| Function | Description | Req. Type | Return Type | Result |
formatDate($date) |
Date w/o time | String or DateTime | String | 23.08.2026 |
formatDate($date, 1) |
Date w/ time | String or DateTime | String | 23.08.2026, 09:02 Uhr |
date = now();
| Function | Description | Req. Type | Return Type | Result |
formatDate($date) |
Date w/o time | String or DateTime | String | 08/23/2026 |
formatDate($date, 1) |
Date w/ time | String or DateTime | String | 08/23/26 09:02 am |
date = '2025-12-05 13:44:31';
| Function | Description | Req. Type | Return Type | Result |
daysBetween($date) |
Days between $date and now PARSED AS text/string |
String or DateTime | String | (8 months ago) |
date = '2025-12-05 13:44:31';
| Function | Description | Req. Type | Return Type | Result |
daysBetween($date) |
Days between $date and now PARSED AS text/string |
String or DateTime | String | (vor 8 Monaten) |
date = '2020-04-07 19:24:11';
| Function | Description | Req. Type | Return Type | Result |
daysBetween($date) |
Days between $date and now |
String or DateTime | Integer | 2328 |