タンク認証を使用して、codeigniterでメール検証用のコールバック関数を作成しました。これが私のコードです:
$this->form_validation->set_rules('email', 'Email', 'trim|required|xss_clean|valid_email|callback_is_email_domain[gmail.com,yahoo.com]');
function is_email_domain($input, $domain='')
{
$email_domain=explode("@", $input);
$domain = explode(",", $domain);
if(in_array($email_domain[1],$domain))
{
$result=1;
}
else
{
$this->form_validation->set_message('is_email_domain', 'The %s field must be a %s email address');
}
return $result;
}
タンク認証で「gmail.com」と「yahoo.com」のメールのみを自分のWebサイトに登録できるようにしたい。
どうもありがとう!