イムラインの取得中にエラー4PHP関数エラーT_FUNCTION
解析エラー:構文エラー、Cでの予期せぬT_FUNCTION:\ xamppの\ htdocsにライン上の作業\ CASCの\管理者\フォーム-validator.php \ 21
誰でも助けることができますか?
public function email($message='')
{
$message = (empty ($message)) ? '%s is an invalid email address.' : $message;
$this->set_rule(__FUNCTION__, function($email) {
return (filter_var($email, FILTER_VALIDATE_EMAIL) === FALSE) ? FALSE : TRUE;
}, $message);
return $this;
}
private function set_rule($rule, $function, $message='')
{
// do not attempt to validate when no post data is present
if ($this->haspostdata) {
if (! array_key_exists($rule, $this->rules)) {
$this->rules[$rule] = TRUE;
if (! array_key_exists($rule, $this->functions) && is_callable($function)) {
$this->functions[$rule] = $function;
}
if (!empty ($message)) {
$this->messages[$rule] = $message;
}
}
}
}
は 'set_rule()'第2引数としてクロージャを期待しているのですか? – stillstanding
PHP> = 5.3を使用していますか? – KingCrunch
質問を編集しました。今すぐチェックしてください –