MOON
Server: Apache
System: Linux res.emeff.ca 3.10.0-962.3.2.lve1.5.24.10.el7.x86_64 #1 SMP Wed Mar 20 07:36:02 EDT 2019 x86_64
User: accemeff (1004)
PHP: 7.0.33
Disabled: NONE
Upload Files
File: /home/accemeff/vendor/craftcms/cms/docs/ja/number-fields.md
# 数字フィールド

数字フィールドでは、数値を受け入れるテキスト入力を提供します。

## 設定

数字フィールドの設定は、次の通りです。

* **最小値** – フィールドに入力できる最小の数字
* **最大値** – フィールドに入力できる最大の数字
* **小数点** – フィールドに入力できる小数点以下の最大の桁数

## フィールド

数字フィールドでは、数字を入力できるテキストボックスを表示します。

## テンプレート記法

テンプレート内で数字フィールドを呼び出すと、フィールドに入力された数字を返します。

```twig
{% if user.birthyear %}
    <p>{{ user.name }} was born in {{ user.birthyear }}.</p>

    {% set age = now.year - user.birthyear %}
    <p>That makes them {{ age }} years old!</p>
{% endif %}
```