cleanout.php
来自「sabreipb 2.1.6 utf-8中文版本!」· PHP 代码 · 共 113 行
PHP
113 行
<?php/*+--------------------------------------------------------------------------| Invision Power Board v2.1.5| =============================================| by Matthew Mecham| (c) 2001 - 2005 Invision Power Services, Inc.| | =============================================| Web: | Time: Wed, 01 Mar 2006 19:11:30 GMT| Release: | Licence Info: +---------------------------------------------------------------------------| > $Date: 2005-10-10 14:08:54 +0100 (Mon, 10 Oct 2005) $| > $Revision: 23 $| > $Author: matt $+---------------------------------------------------------------------------|| > TASK SCRIPT: Test| > Script written by Matt Mecham| > Date started: 28th January 2004|+--------------------------------------------------------------------------*///-----------------------------------------// THIS TASKS OPERATIONS:// Clean out 'dead' sessions, validations, registration image entires, etc//+--------------------------------------------------------------------------if ( ! defined( 'IN_IPB' ) ){ print "<h1>Incorrect access</h1>You cannot access this file directly. If you have recently upgraded, make sure you upgraded all the relevant files."; exit();}class task_item{ var $class = ""; var $root_path = ""; var $task = ""; /*-------------------------------------------------------------------------*/ // Our 'auto_run' function // ADD CODE HERE /*-------------------------------------------------------------------------*/ function run_task() { //----------------------------------------- // Delete reg_anti_spam //----------------------------------------- $date = time() - (60*60*6); $this->ipsclass->DB->simple_exec_query( array( 'delete' => 'reg_antispam', 'where' => 'ctime < '.$date ) ); //----------------------------------------- // Delete old sessions //----------------------------------------- $date = $this->ipsclass->vars['session_expiration'] ? (time() - $this->ipsclass->vars['session_expiration']) : (time() - 3600); $this->ipsclass->DB->simple_exec_query( array( 'delete' => 'sessions', 'where' => "running_time < {$date}" ) ); //----------------------------------------- // Delete old searches //----------------------------------------- $date = time() - (60*60*24); $this->ipsclass->DB->simple_exec_query( array( 'delete' => 'search_results', 'where' => "search_date < {$date}" ) ); //----------------------------------------- // Log to log table - modify but dont delete //----------------------------------------- $this->class->append_task_log( $this->task, 'Old reg_images, sessions and search results removed' ); //----------------------------------------- // Unlock Task: DO NOT MODIFY! //----------------------------------------- $this->class->unlock_task( $this->task ); } /*-------------------------------------------------------------------------*/ // register_class // LEAVE ALONE /*-------------------------------------------------------------------------*/ function register_class(&$class) { $this->class = $class; $this->ipsclass =& $class->ipsclass; $this->root_path = $this->class->root_path; } /*-------------------------------------------------------------------------*/ // pass_task // LEAVE ALONE /*-------------------------------------------------------------------------*/ function pass_task( $this_task ) { $this->task = $this_task; } }?>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?