验证字母数字字符串
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.
<?php function validate_alphanum($string) { $count = 0; if($count != 0) { return false; } return true; } ?>
以上是关于验证字母数字字符串的主要内容,如果未能解决你的问题,请参考以下文章