Свойство | Type | Description | |
---|---|---|---|
$fields | |||
$tableName |
Méthode | Description | |
---|---|---|
addValidation ( integer $from_uid, string $to_user, string $target_url, string $type = '', string $data = '' ) : boolean | 添加验证 | |
dispatchValidation ( integer $id, string $validation_code ) | 分发验证 | |
getValidation ( integer $id, string $code ) : mix | 获取邀请详细 | |
isEmailAvailable ( string $email, integer $uid = false ) : boolean | 验证Email是否可用 | |
isValidEmail ( string $email ) : boolean | 检查Email地址是否合法 | |
isValidValidationCode ( integer $id, string $code ) : boolean | 判断给定的验证ID和验证码是否合法 | |
unsetValidation ( integer $id ) : boolean | 取消邀请,即设置验证为失效 |
Méthode | Description | |
---|---|---|
__generateCode ( integer $id ) : string | 生成唯一的验证码 |
public dispatchValidation ( integer $id, string $validation_code ) | ||
$id | integer | 验证的ID(为0或留空时,自动从$_REQUEST获取) |
$validation_code | string | 验证码(为0或留空时,自动从$_REQUEST获取) |
public getValidation ( integer $id, string $code ) : mix | ||
$id | integer | 验证的ID(为0或留空时,自动从$_REQUEST获取) |
$code | string | 验证码(为0或留空时,自动从$_REQUEST获取) |
Résultat | mix | 获取失败返回false,成功后返回邀请详细 |
public isValidEmail ( string $email ) : boolean | ||
string | 邮件地址 | |
Résultat | boolean | 邮件地址是否合法 |
public unsetValidation ( integer $id ) : boolean | ||
$id | integer | 验证的ID(为0或留空时,自动从$_REQUEST获取) |
Résultat | boolean | 是否取消成功 |