GreaterThanOrEqual ================== .. versionadded:: 2.3 The ``GreaterThanOrEqual`` constraint was introduced in Symfony 2.3. Validates that a value is greater than or equal to another value, defined in the options. To force that a value is greater than another value, see :doc:`/reference/constraints/GreaterThan`. +----------------+----------------------------------------------------------------------------------+ | Applies to | :ref:`property or method` | +----------------+----------------------------------------------------------------------------------+ | Options | - `value`_ | | | - `message`_ | | | - `payload`_ | +----------------+----------------------------------------------------------------------------------+ | Class | :class:`Symfony\\Component\\Validator\\Constraints\\GreaterThanOrEqual` | +----------------+----------------------------------------------------------------------------------+ | Validator | :class:`Symfony\\Component\\Validator\\Constraints\\GreaterThanOrEqualValidator` | +----------------+----------------------------------------------------------------------------------+ Basic Usage ----------- The following constraints ensure that: * the number of ``siblings`` of a ``Person`` is greater than or equal to ``5`` * the ``age`` of a ``Person`` class is greater than or equal to ``18`` .. configuration-block:: .. code-block:: php-annotations // src/AppBundle/Entity/Person.php namespace AppBundle\Entity; use Symfony\Component\Validator\Constraints as Assert; class Person { /** * @Assert\GreaterThanOrEqual(5) */ protected $siblings; /** * @Assert\GreaterThanOrEqual( * value = 18 * ) */ protected $age; } .. code-block:: yaml # src/AppBundle/Resources/config/validation.yml AppBundle\Entity\Person: properties: siblings: - GreaterThanOrEqual: 5 age: - GreaterThanOrEqual: value: 18 .. code-block:: xml 5 .. code-block:: php // src/AppBundle/Entity/Person.php namespace AppBundle\Entity; use Symfony\Component\Validator\Mapping\ClassMetadata; use Symfony\Component\Validator\Constraints as Assert; class Person { public static function loadValidatorMetadata(ClassMetadata $metadata) { $metadata->addPropertyConstraint('siblings', new Assert\GreaterThanOrEqual(5)); $metadata->addPropertyConstraint('age', new Assert\GreaterThanOrEqual(array( 'value' => 18, ))); } } Comparing Dates --------------- .. versionadded:: 2.6 The feature to compare dates was introduced in Symfony 2.6. This constraint can be used to compare ``DateTime`` objects against any date string `accepted by the DateTime constructor`_. For example, you could check that a date must at least be the current day: .. configuration-block:: .. code-block:: php-annotations // src/AppBundle/Entity/Order.php namespace AppBundle\Entity; use Symfony\Component\Validator\Constraints as Assert; class Order { /** * @Assert\GreaterThanOrEqual("today") */ protected $deliveryDate; } .. code-block:: yaml # src/AppBundle/Resources/config/validation.yml AppBundle\Entity\Order: properties: deliveryDate: - GreaterThanOrEqual: today .. code-block:: xml today .. code-block:: php // src/AppBundle/Entity/Order.php namespace AppBundle\Entity; use Symfony\Component\Validator\Mapping\ClassMetadata; use Symfony\Component\Validator\Constraints as Assert; class Order { public static function loadValidatorMetadata(ClassMetadata $metadata) { $metadata->addPropertyConstraint('deliveryDate', new Assert\GreaterThanOrEqual('today')); } } Be aware that PHP will use the server's configured timezone to interpret these dates. If you want to fix the timezone, append it to the date string: .. configuration-block:: .. code-block:: php-annotations // src/AppBundle/Entity/Order.php namespace AppBundle\Entity; use Symfony\Component\Validator\Constraints as Assert; class Order { /** * @Assert\GreaterThanOrEqual("today UTC") */ protected $deliveryDate; } .. code-block:: yaml # src/AppBundle/Resources/config/validation.yml AppBundle\Entity\Order: properties: deliveryDate: - GreaterThanOrEqual: today UTC .. code-block:: xml today UTC .. code-block:: php // src/AppBundle/Entity/Order.php namespace AppBundle\Entity; use Symfony\Component\Validator\Mapping\ClassMetadata; use Symfony\Component\Validator\Constraints as Assert; class Order { public static function loadValidatorMetadata(ClassMetadata $metadata) { $metadata->addPropertyConstraint('deliveryDate', new Assert\GreaterThanOrEqual('today UTC')); } } The ``DateTime`` class also accepts relative dates or times. For example, you can check that the above delivery date starts at least five hours after the current time: .. configuration-block:: .. code-block:: php-annotations // src/AppBundle/Entity/Order.php namespace AppBundle\Entity; use Symfony\Component\Validator\Constraints as Assert; class Order { /** * @Assert\GreaterThanOrEqual("+5 hours") */ protected $deliveryDate; } .. code-block:: yaml # src/AppBundle/Resources/config/validation.yml AppBundle\Entity\Order: properties: deliveryDate: - GreaterThanOrEqual: +5 hours .. code-block:: xml +5 hours .. code-block:: php // src/AppBundle/Entity/Order.php namespace AppBundle\Entity; use Symfony\Component\Validator\Mapping\ClassMetadata; use Symfony\Component\Validator\Constraints as Assert; class Order { public static function loadValidatorMetadata(ClassMetadata $metadata) { $metadata->addPropertyConstraint('deliveryDate', new Assert\GreaterThanOrEqual('+5 hours')); } } Options ------- .. include:: /reference/constraints/_comparison-value-option.rst.inc message ~~~~~~~ **type**: ``string`` **default**: ``This value should be greater than or equal to {{ compared_value }}.`` This is the message that will be shown if the value is not greater than or equal to the comparison value. .. include:: /reference/constraints/_payload-option.rst.inc .. _`accepted by the DateTime constructor`: https://php.net/manual/en/datetime.formats.php