All

When applied to an array (or Traversable object), this constraint allows you to apply a collection of constraints to each element of the array.

この制約を配列 (または Traversable オブジェクト) に適用すると、配列の各要素に一連の制約を適用できます。
Applies to property or method
Class All
Validator AllValidator

Basic Usage

Suppose that you have an array of strings and you want to validate each entry in that array:

文字列の配列があり、その配列の各エントリを検証するとします。
  • Attributes
    属性
  • YAML
    YAML
  • XML
    XML
  • PHP
    PHP
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// src/Entity/User.php
namespace App\Entity;

use Symfony\Component\Validator\Constraints as Assert;

// IMPORTANT: nested attributes require PHP 8.1 or higher
class User
{
    #[Assert\All([
        new Assert\NotBlank,
        new Assert\Length(min: 5),
    ])]
    protected $favoriteColors = [];
}

Now, each entry in the favoriteColors array will be validated to not be blank and to be at least 5 characters long.

これで、favoriteColors 配列の各エントリは、空白ではなく、少なくとも 5 文字の長さであることが検証されます。

Options

constraints

type: array [default option]

タイプ: 配列 [デフォルト オプション]

This required option is the array of validation constraints that you want to apply to each element of the underlying array.

この必須オプションは、基になる配列の各要素に適用する検証制約の配列です。

groups

type: array | string

タイプ: 配列 |ストリング

It defines the validation group or groups of this constraint. Read more about validation groups.

この制約の検証グループを定義します。検証グループの詳細を参照してください。

payload

type: mixed default: null

タイプ: 混合 デフォルト: null

This option can be used to attach arbitrary domain-specific data to a constraint. The configured payload is not used by the Validator component, but its processing is completely up to you.

このオプションは、任意のドメイン固有のデータを制約に添付するために使用できます。構成されたペイロードは Validator コンポーネントによって使用されませんが、その処理は完全にユーザー次第です。

For example, you may want to use several error levels to present failed constraints differently in the front-end depending on the severity of the error.

たとえば、いくつかのエラー レベルを使用して、エラーの重大度に応じて、失敗した制約をフロントエンドで異なる方法で提示することができます。