This function returns the week day value of the given datetime. This will be a value from 0 to 6.
date_get_weekday(date);
Argument | Type | Description |
---|---|---|
date | Datetime | The date to check. |
myweekday = date_get_weekday(date_current_datetime());
This would set "myweekday" to the current weekday.