Skip to content
On this page

Home > @taiyuuki/utils > date_now

date_now() function

该函数以指定格式返回当前日期和时间。

Signature:

typescript
declare function date_now(format?: string): string;
declare function date_now(format?: string): string;

Parameters

ParameterTypeDescription
formatstring(Optional) 参数是一个字符串,用于指定所需的日期和时间格式。它使用占位符,例如年份的“yyyy”、月份的“MM”、日期的“dd”、小时的“HH”、分钟的“mm”和秒钟的“ss”

Returns:

string

基于当前日期和时间的格式化日期字符串,使用 format 参数中指定的格式。默认格式为“yyyy-MM-dd|HH:mm:ss”。该函数将格式字符串中的占位符替换为当前日期和时间的相应值,并返回结果字符串。

Released under the MIT License.