date_format[格式化日期]
优质
小牛编辑
125浏览
2023-12-01
Parameter Position | Type | Required | Default | Description |
---|---|---|---|---|
1 | string | No | %b %e, %Y | This is the format for the outputted date. 输出日期的格式。 |
2 | string | No | n/a | This is the default date if the input is empty. 输入为空时的默认时间格式。 |
This formats a date and time into the given strftime() format.
Dates can be passed to Smarty as unix timestamps, mysql timestamps or any string made up of month day year (parsable by strtotime).
Designers can then use date_format to have complete control of the formatting of the date.
If the date passed to date_format is empty and a second parameter is passed, that will be used as the date to format.
格式化从函数strftime()获得的时间和日期。
Unix或者mysql等的时间戳记(parsable by strtotime)都可以传递到smarty。
设计者可以使用date_format完全控制日期格式。
如果传给date_format的数据是空的,将使用第二个参数作为时间格式。
Example 5-8. date_format[日期格式]
|