date_inc_hour

With this function you can increment a given datetime value by a specific number of hours, and it will return the new datetime value.

 

Syntax:

date_inc_hour(date, amount);

ArgumentTypeDescription
dateDatetimeThe datetime to add to.
amountRealThe number of hours (must be an integer) to add.

 

Returns:

Real

 

Example:

mynewdatetime = date_inc_hour(date_current_datetime(), 24);

This would set mynewdatetime to the current date but with 24 hours added.