>  기사  >  백엔드 개발  >  php的phalcon框架不能验证中文字符

php的phalcon框架不能验证中文字符

WBOY
WBOY원래의
2016-06-06 20:34:391107검색

直接在php中验证可以验证

<code>$value = '电商';
preg_match('/^[a-zA-Z\x{4e00}-\x{9fa5}][a-zA-Z_\-\x{4e00}-\x{9fa5}]*$/u',$value,$m)
</code>

在phalcon的控制器的方法中就不能验证,

<code>public function registerAction()
    {
        if($this->request->isPost())
        {
            $myValidator = new MyValidator();
            $errors = $myValidator->validateUsername($this->request->getPost('user_name'));
       }
    }
</code>

下面是调用的函数,

<code>public function validateUsername($value)
    {
        $error = false;
        if(!preg_match('/^[a-zA-Z\x{4e00}-\x{9fa5}][a-zA-Z_\-\x{4e00}-\x{9fa5}]*$/u',$value,$m))
        {
            $error = true;
            print_r('world');
        }
        else
        {
            $pattern = '/[\x{4e00}-\x{9fa5}]/u';
            $str1    = preg_replace($pattern, '', $value, -1, $count);

            $length  = strlen($str1) + $count * 2;
            if (!($length >= 2 && $length 'user name is invalid2.'];
        }
        else
        {
            $return = null;
        }
        return $return;

    }
</code>

回复内容:

直接在php中验证可以验证

<code>$value = '电商';
preg_match('/^[a-zA-Z\x{4e00}-\x{9fa5}][a-zA-Z_\-\x{4e00}-\x{9fa5}]*$/u',$value,$m)
</code>

在phalcon的控制器的方法中就不能验证,

<code>public function registerAction()
    {
        if($this->request->isPost())
        {
            $myValidator = new MyValidator();
            $errors = $myValidator->validateUsername($this->request->getPost('user_name'));
       }
    }
</code>

下面是调用的函数,

<code>public function validateUsername($value)
    {
        $error = false;
        if(!preg_match('/^[a-zA-Z\x{4e00}-\x{9fa5}][a-zA-Z_\-\x{4e00}-\x{9fa5}]*$/u',$value,$m))
        {
            $error = true;
            print_r('world');
        }
        else
        {
            $pattern = '/[\x{4e00}-\x{9fa5}]/u';
            $str1    = preg_replace($pattern, '', $value, -1, $count);

            $length  = strlen($str1) + $count * 2;
            if (!($length >= 2 && $length 'user name is invalid2.'];
        }
        else
        {
            $return = null;
        }
        return $return;

    }
</code>

http://stackoverflow.com/questions/4923319/php-check-if-the-string-has...

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.