date = now();
| Function | Description | Req. Type | Return Type | Result |
formatDate($date) |
Date w/o time | String or DateTime | String | 24.06.2026 |
formatDate($date, 1) |
Date w/ time | String or DateTime | String | 24.06.2026, 23:06 Uhr |
date = now();
| Function | Description | Req. Type | Return Type | Result |
formatDate($date) |
Date w/o time | String or DateTime | String | 06/24/2026 |
formatDate($date, 1) |
Date w/ time | String or DateTime | String | 06/24/26 11:06 pm |
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 | (6 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 6 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 | 2269 |