📄 optimize.task.php
字号:
<?php//******************************************************//// ///////// //// /////// // // // // //// // ///// ////// //// ////// // // //// // // // //// ///////// ///// ////// ///// ///////******************************************************//// icebb.net // 0.9.3//******************************************************//// clean out task// $Id: cleanout.php 195 2005-07-24 03:51:11Z mutantmonkey $//******************************************************//class task_optimize{ function run() { global $icebb,$db,$std; $tables_to_optimize = array( 'icebb_adsess', 'icebb_cache', 'icebb_failedlogin_block', 'icebb_favorites', 'icebb_search_results', 'icebb_session_data', 'icebb_subscriptions', 'icebb_users_validating', ); foreach($tables_to_optimize as $tbl) { $db->query("OPTIMIZE TABLE {$tbl}",1); } }}?>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -