vosy
1
Hi id like to ask, do we have any list of magic words like “now” in Setter Value and combination with Mapper Format: Date ??
“now” is only word but with mapper Format: Date it create date 
do we have any next magic words for Setter with any Mapper?
Crazzy question but, yea … 
Hi @vosy,
Unfortunately, As this is kind of combination of words, therefore we can’t list them all, However, these are a few of them
Common Predefined Date/Time Strings in PHP
Keyword |
Meaning |
“now” |
Current date and time (default if no argument passed) |
“today” |
Today’s date at midnight |
“yesterday” |
Midnight of the previous day |
“tomorrow” |
Midnight of the next day |
“midnight” |
Today at 00:00 (same as “today”) |
“noon” |
Today at 12:00 |
“this week” |
Start of current week (usually Monday) |
“last week” |
Start of previous week |
“next week” |
Start of next week |
“this month” |
Start of current month |
“last month” |
Start of previous month |
“next month” |
Start of next month |
“this year” |
Start of current year |
“last year” |
Start of previous year |
“next year” |
Start of next year |
Relative Modifiers
Keyword Example |
Meaning |
“+1 day” or “1 day” |
One day from now |
“-2 weeks” |
Two weeks ago |
“+3 months” |
Three months from now |
“+1 year” |
One year from now |
“-1 hour” |
One hour ago |
“+30 minutes” |
30 minutes from now |
“next Monday” |
Next occurrence of Monday |
“last Friday” |
Most recent Friday before today |
“first day of next month” |
The 1st of the next month |
“last day of this month” |
Last calendar day of this month |
For the complete combination lists, you can refer to this documentation PHP: Supported Date and Time Formats - Manual