php判断是否四到11位数字
程序员文章站
2024-01-02 15:27:22
...
php判断是否4到11位数字
php判断是否4到11位数字
php判断是否是5到20位数字字母下划线减号
------解决思路----------------------
preg_match('/^\d{4,11}$/', $text)
preg_match('/^[\w-]{5,20}$/', $text)
------解决思路----------------------
preg_match返回1,匹配到了,是正确的,改为:
if(!preg_match('/^\d{4,11}$/', $text)){write_msg("QQ号格式不正确"); }
php判断是否4到11位数字
php判断是否是5到20位数字字母下划线减号
------解决思路----------------------
preg_match('/^\d{4,11}$/', $text)
preg_match('/^[\w-]{5,20}$/', $text)
------解决思路----------------------
preg_match返回1,匹配到了,是正确的,改为:
if(!preg_match('/^\d{4,11}$/', $text)){write_msg("QQ号格式不正确"); }
相关文章
相关视频