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


PHP util::log方法代码示例

本文整理汇总了PHP中util::log方法的典型用法代码示例。如果您正苦于以下问题:PHP util::log方法的具体用法?PHP util::log怎么用?PHP util::log使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在util的用法示例。


在下文中一共展示了util::log方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: log

 public function log() : string
 {
     error_log(__METHOD__);
     list($l, $m) = util::log();
     return $m ? '
   <p class="alert ' . $l . '">' . $m . '</p>' : '';
 }
开发者ID:netserva,项目名称:www,代码行数:7,代码来源:view.php

示例2: chkpw

 public static function chkpw($pw, $pw2)
 {
     error_log(__METHOD__);
     if (strlen($pw) > 9) {
         if (preg_match('/[0-9]+/', $pw)) {
             if (preg_match('/[A-Z]+/', $pw)) {
                 if (preg_match('/[a-z]+/', $pw)) {
                     if ($pw === $pw2) {
                         return true;
                     } else {
                         util::log('Passwords do not match, please try again');
                     }
                 } else {
                     util::log('Password must contains at least one lower case letter');
                 }
             } else {
                 util::log('Password must contains at least one captital letter');
             }
         } else {
             util::log('Password must contains at least one number');
         }
     } else {
         util::log('Passwords must be at least 10 characters');
     }
     return false;
 }
开发者ID:netserva,项目名称:www,代码行数:26,代码来源:util.php

示例3: send

 /**
  * 发送客服消息
  * @param array $data 消息结构{"touser":"OPENID","msgtype":"news","news":{...}}
  * @return boolean|array
  */
 public function send()
 {
     if (!$this->access_token && !$this->checkAuth()) {
         return false;
     }
     $result = $this->http_post(self::API_CGI_PREFIX . self::CUSTOM_SEND_URL . 'access_token=' . $this->access_token, self::json_encode($this->_msg));
     if ($result) {
         $json = json_decode($result, true);
         if (!$json || !empty($json['errcode'])) {
             $this->errCode = $json['errcode'];
             $this->errMsg = $json['errmsg'];
             util::log("111");
             return false;
             util::log("222");
         }
         util::log("333");
         return $json;
         util::log("444");
     }
     util::log("555");
     return false;
     util::log("666");
 }
开发者ID:ChangAiQing,项目名称:framework_app,代码行数:28,代码来源:wechat.class.php

示例4: doIndex

 public function doIndex()
 {
     util::log("12345");
     resource::getView('admin')->display('index.tpl');
 }
开发者ID:ChangAiQing,项目名称:framework_app,代码行数:5,代码来源:admin.php

示例5: log

 public function log() : string
 {
     list($l, $m) = $this->g->in['l'] ? explode(':', $this->g->in['l']) : util::log();
     return $m ? '
         <p class="demo-alert' . $this->mdl_color($l) . '">' . $m . '
         </p>' : '';
 }
开发者ID:netserva,项目名称:www,代码行数:7,代码来源:view.php

示例6: resetpw

 public function resetpw() : string
 {
     error_log(__METHOD__);
     if (count($_POST)) {
         $id = $this->g->in['i'];
         if ($usr = db::read('uid,acl,otpttl', 'id', $id, '', 'one')) {
             $p1 = html_entity_decode($this->in['passwd1']);
             $p2 = html_entity_decode($this->in['passwd2']);
             if (util::chkpw($p1, $p2)) {
                 if ($usr['otpttl'] && $usr['otpttl'] + 3600 > time()) {
                     if ($usr['acl']) {
                         if (db::update(['webpw' => password_hash($p1, PASSWORD_DEFAULT), 'otp' => '', 'otpttl' => '', 'updated' => date('Y-m-d H:i:s')], [['id', '=', $id]])) {
                             util::log('Password reset for ' . $usr['uid'], 'success');
                             return $this->t->auth_signin(['uid' => $usr['uid']]);
                             return;
                         } else {
                             util::log('Problem updating database');
                         }
                     } else {
                         util::log($usr['uid'] . ' is not allowed access');
                     }
                 } else {
                     util::log('Your one time password key has expired');
                 }
             }
         } else {
             util::log('User does not exist');
         }
     }
     return $this->t->auth_newpw(['id' => $id, 'uid' => $usr['uid']]);
 }
开发者ID:netserva,项目名称:www,代码行数:31,代码来源:auth.php


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