date_create_datetime

This function will create a datetime value from the component given as the arguments.

 

Syntax:

date_create_datetime(year, month, day, hour, minute, second);

ArgumentTypeDescription
yearRealThe year to set.
monthRealThe month to set.
dayRealThe day to set.
hourRealThe hour to set.
minuteRealThe minute to set.
secondRealThe second to set.

 

Returns:

Datetime

 

Example:

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".