_table = 'common_visit'; $this->_pk = 'ip'; parent::__construct(); } public function inc($ip, $viewadd = 1) { return DB::query('UPDATE %t SET view=view+(%d) WHERE `ip`=%s', array($this->_table, $viewadd, $ip)); } public function range($start = 0, $limit = 0) { return DB::fetch_all('SELECT * FROM '.DB::table($this->_table).' ORDER BY view DESC'.DB::limit($start, $limit), $this->_pk); } } ?>