当前位置: 首页>>代码示例>>PHP>>正文


PHP Random::word方法代码示例

本文整理汇总了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;
 }
开发者ID:wuxw,项目名称:YYF,代码行数:21,代码来源:Cookie.php

示例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;
 }
开发者ID:derek-chow,项目名称:YunYinService,代码行数:35,代码来源:User.php

示例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;
 }
开发者ID:derek-chow,项目名称:YunYinService,代码行数:15,代码来源:Cookie.php


注:本文中的Random::word方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。