本文整理匯總了PHP中Server::getUserAgent方法的典型用法代碼示例。如果您正苦於以下問題:PHP Server::getUserAgent方法的具體用法?PHP Server::getUserAgent怎麽用?PHP Server::getUserAgent使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Server
的用法示例。
在下文中一共展示了Server::getUserAgent方法的6個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: _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();
}
}
}
示例2: _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();
}
}
}
示例3: _control
private function _control()
{
$ip = $this->get('_ip');
$cliente = $this->get('_cliente');
if ($ip == NULL & $cliente == NULL) {
$this->set('_ip', Server::getCLientAdress());
$this->set('_cliente', Server::getUserAgent());
} else {
if ($ip !== Server::getCLientAdress() || $cliente !== Server::getUserAgent()) {
$this->destroy();
//$this->trusted = false;
}
}
}
示例4: _control
private function _control()
{
$ip = $this->get("_ip");
$cliente = $this->get("_cliente");
if ($ip == null && $cliente == null) {
$this->set("_ip", Server::getCLientAdress());
$this->set("_cliente", Server::getUserAgent());
} else {
if ($ip != Server::getClientAdress() || $cliente != Server::getUserAgent()) {
$this->destroy();
//$this->trusted = false;
}
}
}
示例5: __construct
function __construct()
{
if (!self::$iniciada) {
session_start();
// $this->_control();
$ip = $this->get("_ip");
$cliente = $this->get("_cliente");
if ($ip == null && $cliente == null) {
$this->set("_ip", Server::getClientAddres());
$this->set("_cliente", Server::getUserAgent());
} else {
if ($ip !== Server::getClientAddres() || $cliente !== Server::getUserAgent()) {
$this->destroy();
//$this->truested = false; // Esto lo podemos usar como alternativa (lo veremos más adelante)
}
}
}
self::$iniciada = true;
}
示例6: __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;
}