smarty and date

lolalola picture lolalola · Jul 14, 2010 · Viewed 40.6k times · Source

i get date with: {$smarty.now|date_format:'%Y-%m-%d %H:%M:%S'}

But how get 20 day after?

If now: 2010 05 05 12:12:12, I wish to show 2010 25 05 12:12:12

Answer

serg picture serg · Jul 15, 2010

{$smarty.now} is a simple timestamp (number of seconds since 1970). So you can just add as many seconds to it as you need:

{$smarty.now+20*24*60*60|date_format:'%Y-%m-%d %H:%M:%S'} //+20 days

This works in Smarty3, if not in older versions then you might need to do the math with {assign} and/or {math} directives.