20 lines
377 B
PHP
20 lines
377 B
PHP
<?php
|
|
|
|
class Visit extends HD_Controller
|
|
{
|
|
public function __construct()
|
|
{
|
|
parent::__construct();
|
|
$this->load->model('agent/visit/visit_log_model');
|
|
$this->visit_log_model->set_db('agentdb');
|
|
}
|
|
|
|
/*
|
|
* 访问日志入库
|
|
*/
|
|
public function index()
|
|
{
|
|
$this->visit_log_model->popQueue();
|
|
}
|
|
|
|
} |