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')
本文介绍了如何使用不同的格式来展示日期和时间,包括全格式(full)、长格式(long)、中格式(medium)、短格式(short)及默认格式(default)。通过实例展示了如何获取并格式化特定日期,以及如何获取当前时间的具体格式。
2041

被折叠的 条评论
为什么被折叠?



