当前位置:Gxlcms > PHP教程 > php批量转换Mysql表引擎

php批量转换Mysql表引擎

时间:2021-07-01 10:21:17 帮助过:17人阅读

<?php
/**
 * 批量转换Mysql表引擎
 */
error_reporting(E_ALL);
// 数据库连接配置
$host     = 'localhost';
$username = 'root';
$passwd   = '';
$database = 'test';
// 要转换的库名配置,多库转换增加配置元素即可
$configs  = array($database);
// 转换配置
$convert_rule = array(
    'from' => 'InnoDB',
    'to'   => 'MyISAM'
);
mysql_engine_convert();
/**
 * 转换函数
 */
function mysql_engine_convert()
{
    global $host,$username,$passwd,$configs,$convert_rule;
    if ( ($conn = mysql_connect($host, $username, $passwd)) !== false)
    {
        foreach ($configs as $db_name)
        {
            mysql_select_db($db_name) or exit('Not found db: '. $db_name);
            $tables = mysql_query("SHOW FULL TABLES");
            while ($table = mysql_fetch_row($tables))
            {
                if ($table[1] === 'VIEW') continue;
                $sql = "SHOW TABLE STATUS from {$db_name} where Name='{$table[0]}' ";
                if ($result = mysql_query($sql))
                {
                    $table_status = mysql_fetch_row($result);
                    
                    if (strtolower($table_status[1]) == strtolower($convert_rule['from']))
                        mysql_query("ALTER TABLE {$table[0]} ENGINE = {$convert_rule['to']}");
                }
            }
            echo $db_name,':All tables ENGINE is ',$convert_rule['to'],"\n";
        }
        
    } else {
        echo "db error\n";
    }
}

人气教程排行