create.xuanxuan.php 329 B

1234567
  1. <?php
  2. if(strtolower($actionType) == 'reconnectxuanxuan' or strtolower($actionType) == 'loginxuanxuan')
  3. {
  4. $ip = helper::getRemoteIp();
  5. $last = $this->server->request_time;
  6. $this->dao->update(TABLE_USER)->set('visits = visits + 1')->set('ip')->eq($ip)->set('last')->eq($last)->where('account')->eq($actor)->exec();
  7. }