php生成手机验证码
常用语生成验证码,比如注册验证码,6位数字:
function sp_get_mobile_code() { $forbidden_num = "1989:10086:12590:1259:10010:10001:10000:"; do { $mobile_code = subst[......]
常用语生成验证码,比如注册验证码,6位数字:
function sp_get_mobile_code() { $forbidden_num = "1989:10086:12590:1259:10010:10001:10000:"; do { $mobile_code = subst[......]
基于正则校验:
function sp_is_mobilephone($phonenumber){ return preg_match("/^1[34578]{1}\d{9}$/",$phonenumber); }
[……]