This function
adds one month from given parameters with respect to the date and then assigns
the date value to each variable. The intercalation is also calculated.
void
TimePlusMon(int year, int mon);
Parameter
year :
Year (tag or variable)
mon :
Month (tag or
variable)
Return Value
There is not a return value.
Example1 : If it used variables in a script)
year = 2000;
mon = 1;
@TimePlusMon(year,
mon);
Description : It is the February, 2000. In other
words, year = 2000, mon = 2
Example2 : If it used memory tags in a script)
$year = 2000;
$mon = 1;
@TimePlusMon($year, $mon);
Description : Tags can be used immediately as
parameters. $year = 2000, $mon
= 2
Related Helps)