當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Server::getClientAddress方法代碼示例

本文整理匯總了PHP中Server::getClientAddress方法的典型用法代碼示例。如果您正苦於以下問題:PHP Server::getClientAddress方法的具體用法?PHP Server::getClientAddress怎麽用?PHP Server::getClientAddress使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Server的用法示例。


在下文中一共展示了Server::getClientAddress方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: _control

 private function _control()
 {
     $ip = $this->get('_ip');
     $cliente = $this->get('_cliente');
     if ($ip == null && $cliente == null) {
         $this->set($ip, Server::getClientAddress());
         $this->set($cliente, Server::getUserAgent());
     } else {
         if ($ip != Server::getClientAddress() || $cliente != Server::getUserAgent()) {
             $this->destroy();
         }
     }
 }
開發者ID:carlosgrgr,項目名稱:gestionUsuarios,代碼行數:13,代碼來源:Session.php

示例2: _control

 private function _control()
 {
     $ip = $this->get("_IP");
     $client = $this->get("_CLIENT");
     if ($ip === null && $client === null) {
         $this->set("_IP", Server::getClientAddress());
         $this->set("_CLIENT", Server::getUserAgent());
     } else {
         if ($ip !== Server::getClientAddress() || $client !== Server::getUserAgent()) {
             $this->destroy();
         }
     }
 }
開發者ID:davidgamarra,項目名稱:DWESI_Practice4_UserManager,代碼行數:13,代碼來源:Session.php

示例3: __construct

 function __construct($nombre = NULL)
 {
     if ($nombre != NULL) {
         session_name($nombre);
     }
     if (!self::$iniciada) {
         session_start();
         $ip = $this->get('_ip');
         $cliente = $this->get('_cliente');
         if ($ip == null && $cliente == null) {
             $this->set('_ip', Server::getClientAddress());
             $this->set('_cliente', Server::getUserAgent());
         } else {
             if ($ip !== Server::getClientAddress() || $cliente !== Server::getUserAgent()) {
                 session_destroy();
                 //$this->trusted=false;
             }
         }
     }
     self::$iniciada = true;
 }
開發者ID:ealvarez1990,項目名稱:sas,代碼行數:21,代碼來源:Session.php


注:本文中的Server::getClientAddress方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。