Difference Between Smarty Dates

Please post any smarty syntax to get the number of days between two dates from my database. I should have displayed all the other fields, but this is a date field with the number of days that do not work as I expected. Please let me know if there is a way to get this solution without any additional plugins.

+3
source share
1 answer

Smarty does not include any specific functions for performing mathematical operations on a date. They have date_formattimestamps, but otherwise you will either have to write your own plugin days_diff, find one online ( here is one , but look at the code first), or enter the date math in PHP and assign a new variable to Smarty.

+2
source

All Articles