50% discount in conference replays
2020 and 2021 events
In English, French, German, Polish and Spanish
Language
Edit this pageWarning: You are browsing the documentation for Symfony 2.3, which is no longer maintained.
Read the updated version of this page for Symfony 6.0 (the current stable version).
Language
Validates that a value is a valid language Unicode language identifier
(e.g. fr
or zh-Hant
).
Applies to | property or method |
Options | |
Class | Language |
Validator | LanguageValidator |
Basic Usage
- Annotations
- YAML
- XML
- PHP
1 2 3 4 5 6 7 8 9 10 11 12
// src/AppBundle/Entity/User.php
namespace AppBundle\Entity;
use Symfony\Component\Validator\Constraints as Assert;
class User
{
/**
* @Assert\Language()
*/
protected $preferredLanguage;
}
This work, including the code samples, is licensed under a
Creative Commons BY-SA 3.0
license.