| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- <?php
- //decode by http://dezend.qiling.org QQ 2859470
- if ($action == 'do_mymps') {
- if (!$optimize || !is_array($optimize)) {
- write_msg('未选择需要维护项,请返回至少选择一项。');
- exit;
- }
- $optimize_arr = array('check' => '检查', 'repair' => '修复', 'analyze' => '分析', 'optimize' => '优化');
- $goodresults = $tables = array();
- $query = $db->query('SHOW TABLE STATUS');
- while ($myval = $db->fetch_array($query)) {
- if (substr($myval['Name'], 0, strlen($dbpre)) == $dbpre) {
- $tables[] = $myval['Name'];
- }
- }
- foreach ($optimize as $val) {
- if (array_key_exists($val, $optimize_arr)) {
- $newtable =& $tables;
- foreach ($newtable as $table) {
- $result = $db->query($val . ' TABLE ' . $table) ? '<font color="#339900">成功</font>' : '<font color="#FF0000">失败</font>';
- $goodresults[] = array('do' => $optimize_arr[$val], 'table' => $table, 'result' => $result);
- }
- }
- }
- if ($goodresults && is_array($goodresults) && 0 < count($goodresults)) {
- $here = 'Mymps数据库维护';
- $mymps .= mymps_admin_tpl_global_head();
- $mymps .= '<div id=' . MPS_SOFTNAME . '><table class="vbm" border="0" cellspacing="0" cellpadding="0"><tr class="firstr"><td>操作</td><td>操作的数据表</td><td>结果</td></tr>';
- foreach ($goodresults as $result) {
- $mymps .= '<tr><td width="10%" bgcolor="white">' . $result['do'] . '</td><td width="80%" bgcolor="white">' . $result['table'] . '</td><td width="10%" bgcolor="white">' . $result['result'] . '</td></tr>';
- }
- $mymps .= '</table></div>';
- $mymps .= mymps_admin_tpl_global_foot();
- echo $mymps;
- } else {
- write_msg('操作失败!');
- exit;
- }
- } else {
- $query = $db->query('SHOW TABLE STATUS');
- $mymps_rows_total = $plugin_rows_total = $other_rows_total = $mymps_Index_length = $other_Index_length = $mymps_Data_free = $other_Data_free = $mymps_Data_length = $other_Data_length = 0;
- while ($info = $db->fetch_array($query)) {
- $info['Index_length_unit'] += sizeunit(@intval($info['Index_length']));
- $info['Data_free_unit'] += sizeunit(@intval($info['Data_free']));
- $info['Data_length_unit'] += sizeunit(@intval($info['Data_length']));
- if (substr($info['Name'], 0, strlen($db_mymps)) == $db_mymps) {
- $mymps_table_info[] = $info;
- $mymps_rows_total += $info['Rows'];
- $mymps_Index_length += $info['Index_length'];
- $mymps_Data_free += $info['Data_free'];
- $mymps_Data_length += $info['Data_length'];
- } else {
- $other_table_info[] = $info;
- $other_rows_total += $info['Rows'];
- $other_Index_length += $info['Index_length'];
- $other_Data_free += $info['Data_free'];
- $other_Data_length += $info['Data_length'];
- }
- }
- $here = '数据库维护';
- include mymps_tpl('mymps_optimize');
- }
|