首页 > 后端开发 > php教程 > php的phalcon框架不能验证中文字符

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

WBOY
发布: 2016-06-06 20:34:39
原创
1122 人浏览过

直接在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 <= 14))
            {
                $error = true;

            }

        }
        if($error)
        {
            $return = ['user_name'=>'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 <= 14))
            {
                $error = true;

            }

        }
        if($error)
        {
            $return = ['user_name'=>'user name is invalid2.'];
        }
        else
        {
            $return = null;
        }
        return $return;

    }
</code>
登录后复制
登录后复制

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

相关标签:
来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板