date_create_datetime(year, month, day, hour, minute, second);
Argument | Description |
---|---|
year | The year to set. |
month | The month to set. |
day | The day to set. |
hour | The hour to set. |
minute | The minute to set. |
second | The second to set. |
Returns: Real
This function will create a datetime value from the component
given as the arguments.
mydatetime = date_create_datetime(2011, 9, 15, 9,
43, 30);
This would set "mydatetime" to the given date and time and store the returned value in the variable "mydatetime".