0

タンク認証を使用して、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サイトに登録できるようにしたい。

どうもありがとう!

4

1 に答える 1

0
$email_domain is not an array but you have use it as an array `$email_domain[1]`
于 2013-01-17T05:04:24.907 に答える