Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagebp
// Get today's day of the month
Day = SRP_Date("Day", Date())


// Get today's day of the month in UTC
Day = SRP_Date("Day", SRP_Date("Today", 1))

// Get a hard coded date's day of the month
Day = SRP_Date("Day", -9519)

// Parse a date's day of the month
Date = SRP_Date("Parse", "Thursday, March 30, 1978", "DDD, MMMM D, YYYY")
Day = SRP_Date("Day", Date)

...