CakePHP - 检查字符串是否为有效电子邮件地址的实用方法?
在控制器中,我需要检查字符串以查看它是否是有效的电子邮件地址。 Cake 中是否有现有的方法可以用来检查这一点?
它与模型无关,所以我不想使用验证数组。
In a controller, I need to check a string to see if it is a valid email address. Is there an existing method in Cake that I can use to check this?
It has nothing to do with models, so I don't want to use a validate array.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我找到了核心验证类。验证::电子邮件()
I found the core Validation class. Validation::email()
如果您在此控制器中处理电子邮件,您仍然可以使用模型验证,
您当前的模型应该有“电子邮件”规则。或者您可以在此处创建一个。
you may still use the model validation for it
your current model should have a rule for "email" if you are handling emails in this controller. or you can create one here.