模板:Age in years, months and days/doc

维基百科,自由的百科全书
跳转到导航 跳转到搜索

This template returns the number of full years, then surplus months, then surplus days between two specified dates. If the second set of parameters is not included, it will return the number of years, months and days between a specified date and today's date. The words "year", "month" and "day" are plural when appropriate.

The years and months are separated by a comma. Since serial commas are optional and use varies, this template does not automatically place a comma after the months. If a serial comma is desired, adding |sc=y to the template invocation will include one.

See Wikipedia:Age calculation templates for more information on using this kind of template.

Syntax[编辑]

{{Age in years, months and days|year= |month= |day= }} or
{{Age in years, months and days|yyyy|mm|dd|yyyy2|mm2|dd2}}

Examples[编辑]

{{Age in years, months and days|year=2001|month=1|day=15}} returns "25年6个月"
{{Age in years, months and days|2001|01|15|2008|09|05}} returns "7年7个月又21天"
{{Age in years, months and days|2016|8|4|2016|9|5}} returns "1个月1天"

Notes[编辑]

This template can handle an ambiguous start date:

{{Age in years, months and days|year=2010|month=9}} returns "15年9—10个月"
{{Age in years, months and days|2009|6||2011|2|21}} returns "1年7—8个月"

But it cannot handle an ambiguous end date:

{{Age in years, months and days|2012|11|2|2016|4}} returns "3年4—5个月"
{{Age in years, months and days|2012|11|2|2017}} returns "4—5年"

Since the length of a month varies, the number of days to roll over the number of months varies.

{{Age in years, months and days|2007|3|12|2015|6|11}} returns "8年2个月又30天"
{{Age in years, months and days|2007|3|12|2015|7|11}} returns "8年3个月又29天"

To add a serial comma specify |sc=y.

{{Age in years, months and days|year=2001|month=1|day=15|sc=y}} returns "25年,6个月"
{{Age in years, months and days|2001|1|15|2008|9|5|sc=y}} returns "7年,7个月又21天"
{{Age in years, months and days|表达式错误:预期外的<运算符。|表达式错误:预期外的<运算符。|表达式错误:预期外的<运算符。|sc=y}} returns "错误:需要有效的年月日"

TemplateData[编辑]

以下是该模板的模板数据,适用于可视化编辑器等工具。

Age in years, months and days模板数据

<templatedata>{ "description": "This template returns the number of full years, surplus months, and surplus days between two specified dates. If the second set of parameters is not included, it will return the number of years, months and days between a specified date and today's date.", "params": {

 "1": {
   "label": "Year ('from' date)",
   "description": "The year of the (first) date",
   "type": "number",
   "required": true,
   "aliases": [ "year" ]
 },
 "2": {
   "label": "Month ('from' date)",
   "description": "Number of the month of the (first) date",
   "type": "number",
   "required": true,
   "aliases": [ "month" ]
 },
 "3": {
   "label": "Day of month ('from' date)",
   "description": "The day of the month of the (first) date",
   "type": "number",
   "required": false,
   "aliases": [ "day" ]
 },
 "4": {
   "label": "Year ('to' date)",
   "description": "The year of the 'to' date, if required",
   "type": "number",
   "default": "the current year",
   "required": false
 },
 "5": {
   "label": "Month ('to' date)",
   "description": "Number of the month of the 'to' date, if required",
   "type": "number",
   "default": "the current month",
   "required": false
 },
 "6": {
   "label": "Day of month ('to' date)",
   "description": "The day of the month of the 'to' date, if required",
   "type": "number",
   "default": "the current day",
   "required": false
 },
 "sc": {
   "label": "Serial comma",
   "description": "Enter 'y' to turn on the serial comma after the months",
   "type": "string/line",
   "default": "none",
   "required": false
 }
}

}</templatedata>

参见[编辑]