如何延長我現有的form_validaion類,使其接受我使用笨重音符號,這是MY_Form_validation至今:重音字符form_validation笨
class MY_Form_validation extends CI_Form_validation{
public function __construct(){
parent::__construct();
}
public function alpha_dash($str){
return (!preg_match("/^([-a-z0-9 _-])+$/i", $str)) ? FALSE : TRUE;
}
}
通過重音的字符我的意思是這樣的:
「E中的權證E I A○I O E中的ù...」
謝謝,提前。
http://php.net/manual/en/regexp.reference.unicode.php – nhahtdh