Skip to content

Latest commit

 

History

History
12 lines (7 loc) · 534 Bytes

RepeatedField.rst

File metadata and controls

12 lines (7 loc) · 534 Bytes

RepeatedField

RepeatedField は、フィールドを2回出力できるよう拡張されたフィールドグループです。繰り返しフィールドでは、ユーザーが両方のフィールドに同じ値を入れた時だけバリデーションが実施されます。

use Symfony\Component\Form\RepeatedField;

$form->add(new RepeatedField(new TextField('email')));

これは、Eメールアドレスやパスワードを問い合わせる時にとても便利です!