Symfony Form Validation Constraint Expression
问题 I have form, and need to create inline validation: $builder ->add('Count1', 'integer', [ 'data' => 1, 'constraints' => [ new NotBlank(), new NotNull(), ], ]) ->add('Count2', 'integer', [ 'constraints' => [ new NotBlank(), new NotNull(), ], ]) ->add('Count3', 'integer', [ 'data' => 0, 'constraints' => [ new NotBlank(), new NotNull(), ], ]) How white inline validation Expression for rules Count2 >=Count1 Count3 <=Count2 Count2 >= $someVariable 回答1: Other solution by using Expression Constraint