date_date_string(date);
Argument | Description |
---|---|
date | The date to use. |
Returns: String
With this function you can create a string containing the given
date, formatted as day/month/year.
str =
date_date_string(date_current_datetime());
draw_text(32, 32, str);
This would set "str" to hold a formatted string of the current date and time as shown by the system.