Zend Validate,每个验证器显示一条消息

发布于 2024-09-09 02:26:07 字数 216 浏览 5 评论 0原文

我正在使用 zend_validate_email 验证电子邮件地址。 例如,对于电子邮件地址 aa@aa,它会抛出几条错误消息,其中包括非常技术性的 DNS 不匹配描述 (:S)。

我试图让它只显示 1 条我想要的消息(例如:“请输入有效的电子邮件”)。

除了创建子类​​并重写 isValid 方法、清除错误消息数组之外,还有什么方法可以优雅地做到这一点吗?

谢谢!

I am validating an email address using zend_validate_email.
For example, for email address aa@aa it throws several error messages including very technical describing that DNS mismatch (:S).

I am trying to make it display only 1 message that I want it to (for example: "Please enter a valid email").

Is there any way of doing it elegantly, apart from creating a subclass and overriding the isValid method, clearing out the array of error messages?

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

┼── 2024-09-16 02:26:07
$validator = new Zend_Validate_EmailAddress();
// sets the message for all error types
$validator->setMessage('Please enter a valid email');
// sets the message for the INVALID_SEGMENT error
$validator->setMessage('Something with the part after the @ is wrong', Zend_Validate_EmailAddress::INVALID_SEGMENT);

有关错误和消息模板的完整列表,请参阅 Zend_Validate_EmailAddress 类

$validator = new Zend_Validate_EmailAddress();
// sets the message for all error types
$validator->setMessage('Please enter a valid email');
// sets the message for the INVALID_SEGMENT error
$validator->setMessage('Something with the part after the @ is wrong', Zend_Validate_EmailAddress::INVALID_SEGMENT);

For a full list of errors and message templates see the Zend_Validate_EmailAddress class

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文