apache_conf symfony2表达式验证

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了apache_conf symfony2表达式验证相关的知识,希望对你有一定的参考价值。

use Symfony\Component\Validator\Constraints as Assert;


class Conference
{
    /**
     * @var \DateTime
     *
     * @Assert\Expression(
     *     "this.startDate <= this.endDate",
     *     message="Start date should be less or equal to end date!"
     * )
     */
    protected $startDate;

    /**
     * @var \DateTime
     *
     * @Assert\Expression(
     *     "this.endDate >= this.startDate",
     *     message="End date should be greater or equal to start date!"
     * )
     */
    protected $endDate;
}

以上是关于apache_conf symfony2表达式验证的主要内容,如果未能解决你的问题,请参考以下文章

apache_conf 修改后的Symfony2 .htaccess文件,可以从Apache虚拟主机设置前端控制器(有点像Rails)。

将旧用户迁移到 symfony2

Symfony2 自定义身份验证:用户登录但未通过身份验证

symfony2 中的复选框验证

Symfony2中组序列验证器的问题

Symfony2 不会加载自定义身份验证提供程序,加载 DaoAuthenticationProvider