本文整理汇总了PHP中Random::word方法的典型用法代码示例。如果您正苦于以下问题:PHP Random::word方法的具体用法?PHP Random::word怎么用?PHP Random::word使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Random
的用法示例。
在下文中一共展示了Random::word方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: config
/**
* 获取cookie配置
* @method config
* @param [string] $name [配置变量名]
* @return [mixed] [description]
* @author NewFuture
*/
private static function config($name)
{
if (!($config = self::$_config)) {
$config = Config::get('cookie');
if (!($key = Kv::get('COOKIE_aes_key'))) {
/*重新生成加密密钥*/
$key = Random::word(32);
Kv::set('COOKIE_aes_key', $key);
}
$config['key'] = $key;
self::$_config = $config;
}
return isset($config[$name]) ? $config[$name] : null;
}
示例2: POST_emailAction
/**
* 绑定邮箱,发送邮箱验证信息
* PUT /user/1/email {email:"xx@mail.yunyin.org"}
* @method GET_infoAction
* @param integer $id [description]
* @author NewFuture
*/
public function POST_emailAction($id = 0)
{
$id = $this->auth($id);
$response['status'] = 0;
if (!Input::post('email', $email, 'email')) {
$response['info'] = '无效邮箱';
} elseif (UserModel::getByEmail($email)) {
$response['info'] = '已经绑定过用户';
} elseif (!Safe::checkTry('bind_email_' . $id)) {
$response['info'] = '发送次数过多,12小时之后重试';
} else {
/*生成验证码*/
$name = UserModel::where('id', $id)->get('name');
$code = ['use_id' => $id, 'type' => 1];
$Code = new Model('code');
$Code->delete($code);
$code['code'] = $id . '_' . Random::word(16);
$code['content'] = $email;
/*发送邮件*/
if ($Code->insert($code) && Mail::sendVerify($email, $code['code'], $name)) {
$response['status'] = 1;
$response['info'] = '验证邮件成功发送至:' . $email;
} else {
$response['info'] = '邮件发送出错[最多还可重发' . Config::get('try.times') . '次]';
}
}
$this->response = $response;
}
示例3: key
/**
* 获取加密密钥
* @method key
* @return [type] [description]
* @author NewFuture
*/
public static function key()
{
if (!($key = Kv::get('COOKIE_aes_key'))) {
/*重新生成加密密钥*/
$key = Random::word(32);
Kv::set('COOKIE_aes_key', $key);
}
return $key;
}