【发布时间】:2018-02-18 11:18:19
【问题描述】:
请不要推荐“cancelOnFail”,因为如果我验证多个字段,它就无法正常工作
$this->add(
'email',
new PresenceOf(
[
'message' => 'The e-mail is required',
]
)
);
$this->add(
'email',
new Email(
[
'message' => 'The e-mail is not valid',
]
)
);
【问题讨论】:
标签: php phalcon phalcon-routing