Versions Compared

Key

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

...

Code Block
languagebp
// Get the current month
Month = SRP_DateTime("Month", DateTime())

// Get the current month in UTC
Month = SRP_DateTime("Month", SRP_DateTime("Now", 1))

// Get a hard coded datetime's month
Month = SRP_DateTime("Month", -9519.67241898148)

// Parse a datetime's month
Date = SRP_DateTime("Parse", "Thursday, March 30, 1978 at 12:41:08pm", "DDD, MMMM D, YYYY at h:mm:sstt")
Month = SRP_DateTime("Month", Date)

...