摘要: //密码不能为纯数字if (is_numeric($password)){ $msg = array( 'flag' => 0, 'msg' => '密码不能为纯数字' ); return $msg;} //不能包含中文和特殊字符 if(!preg_match("/^[A-Za-z0-9]+$/", 阅读全文
posted @ 2021-12-06 14:44 金翼使 阅读(672) 评论(0) 推荐(0)