验证字母数字字符串

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了验证字母数字字符串相关的知识,希望对你有一定的参考价值。

This function uses the preg_replace counter to check for any non-alphanumeric characters.

You can use this for username / password validation if you don't want any special characters to be used.
  1. <?php
  2.  
  3. function validate_alphanum($string)
  4. {
  5. $count = 0;
  6. preg_replace("/[^a-zA-Z0-9]/", "", $string, -1, $count);
  7.  
  8. if($count != 0)
  9. {
  10. return false;
  11. }
  12.  
  13. return true;
  14. }
  15.  
  16. ?>

以上是关于验证字母数字字符串的主要内容,如果未能解决你的问题,请参考以下文章

验证具有前两位数字和一个字母的字段

求php验证数字+字母的方法

JavaScript笔试题(js高级代码片段)

web代码片段

四位由数字和字母组成的验证码的代码

PHP 验证字母数字字符串