table_common_regip.php 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <?php
  2. /**
  3. * [Discuz!] (C)2001-2099 Comsenz Inc.
  4. * This is NOT a freeware, use is subject to license terms
  5. *
  6. * $Id: table_common_regip.php 28771 2012-03-12 09:13:43Z zhangguosheng $
  7. */
  8. if(!defined('IN_DISCUZ')) {
  9. exit('Access Denied');
  10. }
  11. class table_common_regip extends discuz_table
  12. {
  13. public function __construct() {
  14. $this->_table = 'common_regip';
  15. $this->_pk = '';
  16. parent::__construct();
  17. }
  18. public function fetch_by_ip_dateline($clientip, $dateline) {
  19. return DB::fetch_first('SELECT count FROM %t WHERE ip=%s AND count>0 AND dateline>%d', array($this->_table, $clientip, $dateline));
  20. }
  21. public function count_by_ip_dateline($ctrlip, $dateline) {
  22. if(!empty($ctrlip)) {
  23. return DB::result_first('SELECT COUNT(*) FROM %t WHERE '.DB::field('ip', $ctrlip, 'like').' AND count=-1 AND dateline>%d LIMIT 1', array($this->_table, $dateline));
  24. }
  25. return 0;
  26. }
  27. public function update_count_by_ip($clientip) {
  28. return DB::query('UPDATE %t SET count=count+1 WHERE ip=%s AND count>0', array($this->_table, $clientip));
  29. }
  30. public function delete_by_dateline($dateline) {
  31. return DB::query('DELETE FROM %t WHERE dateline<=%d', array($this->_table, $dateline), false, true);
  32. }
  33. }
  34. ?>