Today's date is: $date
Today's date is also: $date.long #* using property shortcut *#
Today's date is also: $date.get('long') #* using full syntax *#
The date and time is: $date.default $date.short
Another date is: $aDate
Another date is also: $date.format('medium', $aDate)
$date.format('medium', $aDate)
$date.format('full', $aDate)
$date.format('long', $aDate)
$date.format('short', $aDate)
$date.format('default', $aDate)
格式包括 full,long,medium,short,default
获得当前时间
$date.get('yyyy-M-d H:m:s')