lang('register_rules_agree')), $type); } //验证码 if($secqaacheck || $seccodecheck){ if(!check_seccode( $_GET['seccodeverify'],$_GET['sechash'])){ showTips(array('error'=>lang('submit_seccode_invalid')), $type); } } //验证用户名 $usernamelen = dstrlen($params['username']); if($usernamelen < 3) { showTips(array('error'=>lang('profile_username_tooshort')), $type); } if($usernamelen > 30) { showTips(array('error'=>lang('profile_username_toolong')), $type); } //验证邮箱 $params['email'] = strtolower(trim($params['email'])); checkemail($params['email'],$type); //验证密码长度 if($setting['pwlength']) { if(strlen($params['password']) < $setting['pwlength']) { showTips(array('error'=>lang('profile_password_tooshort',array('pwlength' => $setting['pwlength']))),$type); } } //验证密码强度 if($setting['strongpw']) { $strongpw_str = array(); if(in_array(1, $setting['strongpw']) && !preg_match("/\d+/", $params['password'])) { $strongpw_str[] = lang('strongpw_1'); } if(in_array(2, $setting['strongpw']) && !preg_match("/[a-z]+/", $params['password'])) { $strongpw_str[] = lang('strongpw_2'); } if(in_array(3, $setting['strongpw']) && !preg_match("/[A-Z]+/", $params['password'])) { $strongpw_str[] = lang('strongpw_3'); } if(in_array(4, $setting['strongpw']) && !preg_match("/[^a-zA-z0-9]+/", $params['password'])) { $strongpw_str[] = lang('strongpw_4'); } if($strongpw_str) { showTips(array('error'=>lang('password_weak').implode(',', $strongpw_str)),$type); } } //验证两次密码一致性 if($params['password'] !== $params['password2']) { showTips(array('error'=>lang('password_not_match')),$type); } if(!$params['password'] || $params['password'] != addslashes($params['password'])) { showTips(array('error'=>lang('profile_passwd_illegal')), $type); } $profile = $verifyarr = array(); foreach($_G['cache']['fields_register'] as $field) { $field_key = $field['fieldid']; $field_val = $_GET[''.$field_key]; if($field['formtype'] == 'file' && !empty($_FILES[$field_key]) && $_FILES[$field_key]['error'] == 0) { $field_val = true; } if(!profile_check($field_key, $field_val)) { showTips(array('error'=>$field['title'].lang('profile_illegal')),$type); } } } }