8 lines
329 B
PHP
Executable File
8 lines
329 B
PHP
Executable File
<?php
|
|
if(strtolower($actionType) == 'reconnectxuanxuan' or strtolower($actionType) == 'loginxuanxuan')
|
|
{
|
|
$ip = helper::getRemoteIp();
|
|
$last = $this->server->request_time;
|
|
$this->dao->update(TABLE_USER)->set('visits = visits + 1')->set('ip')->eq($ip)->set('last')->eq($last)->where('account')->eq($actor)->exec();
|
|
}
|