我使用Laravel验证程序,尝试使用这种电子邮件验证程序格式来验证电子邮件
'email' => 'required|email:dns'
在编辑我的php.ini文件后,它在本地工作,但是当托管在heroku上时,会引发一些错误。这是错误消息
The Egulias\EmailValidator\Validation\DNSCheckValidation class requires the Intl extension.
请问我该如何解决?
答案 0 :(得分:0)
Hi you need to enable the intl extension by editing the php.ini file if you use xampp you can find it inside the c://Xampp/php/ search for intl and you may get ;extension=intl just remove the semicolon and everything works fine
see more here