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


PHP HTTP::getClientIP方法代码示例

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


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

示例1: doFetchUser

 /**
  * Fetch user.
  *
  * @param string $field  Criteria field
  * @param mixed  $value  Criteria value
  * @return Auth_User
  */
 protected function doFetchUser($field, $value)
 {
     if (!$this->queryInit || !$this->query instanceof DB_Statement) {
         $this->initStatement();
     }
     $this->query->addCriteria($field, $value);
     $result = $this->query->execute();
     $this->query->reset();
     if (!$result->countRows()) {
         return null;
     }
     $info = array_combine(array('id', 'fullname', 'username', 'host', 'password', 'groups', 'active', 'expire') + $result->getFieldNames(), $result->fetchOrdered());
     $info['host'] = HTTP::getClientIP();
     return new Auth_User($info);
 }
开发者ID:jasny,项目名称:Q,代码行数:22,代码来源:DB.php

示例2: isBlocked

 /**
  * Check if host is blocked.
  * Returns 0 if unblockable.
  * 
  * @param string  $host
  * @param boolean $attempt  Increment attempts (bool) or attempt (int)
  * @return boolean
  */
 public function isBlocked($host = null, $attempt = false)
 {
     if (empty($this->loginAttempts)) {
         return 0;
     }
     if (!isset($host)) {
         $host = HTTP::getClientIP(HTTP::CONNECTED_CLIENT);
     }
     if (empty($host) || in_array($host, $this->unblockableHosts, true)) {
         return 0;
     }
     if (!isset($this->storeAttemps)) {
         if (!Cache::hasInstance()) {
             return 0;
         }
         $this->storeAttemps = Cache::i();
     } elseif (!$this->storeAttemps instanceof Cache) {
         $this->storeAttemps = Cache::with($this->storeAttemps, array('overwrite' => true));
     }
     if (is_bool($attempt)) {
         $attempt = (int) $this->storeAttemps->get("AUTH-login_attempts:{$host}") + 1;
     }
     if ($attempt) {
         $this->storeAttemps->save("AUTH-login_attempts:{$host}", $attempt);
     } else {
         $this->storeAttemps->remove("AUTH-login_attempts:{$host}");
     }
     return $this->loginAttempts - $attempt < 0;
 }
开发者ID:jasny,项目名称:Q,代码行数:37,代码来源:Auth.php


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