Home >php教程 >PHP源码 >ThinkPHP 自动验证匹配a-z0-9_(下划线) 再加上-(减号)

ThinkPHP 自动验证匹配a-z0-9_(下划线) 再加上-(减号)

PHP中文网
PHP中文网Original
2016-05-25 16:59:131508browse

原始正则验证如下:
array('name', '/^[a-z]\w{2,10}$/i', '格式错误.'),
原匹配不包含-(减号), 因为某些原因需要需要使用-(减号).
修改成如下:
array('name', '/^[a-z][a-z0-9\_\-]{2,10}$/i', '格式错误.'),
可以匹配-减号. ThinkPHP PHParray('name', '/^[a-z][a-z0-9\_\-]{2,10}$/i', '格式错误.'),

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn