Maison > développement back-end > tutoriel php > php判断是否4到11位数字

php判断是否4到11位数字

WBOY
Libérer: 2016-06-23 13:43:03
original
1684 Les gens l'ont consulté

php判断是否4到11位数字
php判断是否是5到20位数字字母下划线减号


回复讨论(解决方案)

preg_match('/^\d{4,11}$/', $text)
preg_match('/^[\w-]{5,20}$/', $text)

preg_match('/^\d{4,11}$/', $text)
preg_match('/^[\w-]{5,20}$/', $text)



if(preg_match('/^\d{4,11}$/', $text)){write_msg("QQ号格式不正确") }
Copier après la connexion


这样搞报错
Parse error: syntax error, unexpected T_EMPTY in 

if(preg_match('/^\d{4,11}$/', $text)){write_msg("QQ号格式不正确"); }
这样不行啊

php判断是否4到11位数字
php判断是否是5到20位数字字母下划线减号

preg_match返回1,匹配到了,是正确的,改为:
if(!preg_match('/^\d{4,11}$/', $text)){write_msg("QQ号格式不正确"); }

第几行报错?你还有其他代码吧。

搞定

if(preg_match('/^\d{4,11}$/', $text)){write_msg("QQ号格式不正确"); }
这样不行啊


php判断是否4到11位数字
php判断是否是5到20位数字字母下划线减号




搞定了
Étiquettes associées:
source:php.cn
Déclaration de ce site Web
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn
Tutoriels populaires
Plus>
Derniers téléchargements
Plus>
effets Web
Code source du site Web
Matériel du site Web
Modèle frontal