PHP 正则表达式函数 eregi() PHP正则表达式函数 ereg_replace() PHP函数 spliti() PHP 正则表达式函数 eregi() <?php $password = "abc"; if (! eregi ("[[:alnum:]]{8,10}", $password)) { print "Invalid password! Passwords must be from 8 - 10 chars"; } else { print "Valid password"; } ?> PHP正则表达式函数 ereg_replace() PHP函数 spliti()