1. 程式人生 > >利用PHP腳本輔助MySQL數據庫管理4-兩個庫表結構差異比較

利用PHP腳本輔助MySQL數據庫管理4-兩個庫表結構差異比較

for mysql ase array 表結構差異 [] 結構 _array 輔助

<?php
define(‘DATABASE1‘, ‘coffeetest‘);
$dbi1 = new DbMysql;
$dbi1->dbh = ‘mysql://root:[email protected]/‘.DATABASE1;

define(‘DATABASE2‘, ‘sinatest‘);
$dbi2 = new DbMysql;
$dbi2->dbh = ‘mysql://root:[email protected]/‘.DATABASE2;


// db1
$db1 = array();
$map = array();
$dbi1->fetchMap("SHOW TABLES", $map
); $tables = array_keys($map); for($i=0; $i<count($tables); $i++){ $map = array(); $dbi1->fetchMap("DESCRIBE ".$tables[$i], $map); $structures = array(); foreach($map as $k=>$v){ $structures[] = "$k=$v"; } $db1[$tables[$i]] = $structures; } // db2 $db2
= array(); $map = array(); $dbi2->fetchMap("SHOW TABLES", $map); $tables = array_keys($map); for($i=0; $i<count($tables); $i++){ $map = array(); $dbi2->fetchMap("DESCRIBE ".$tables[$i], $map); $structures = array(); foreach($map as $k=>$v){ $structures[] = "$k
=$v"; } $db2[$tables[$i]] = $structures; } // db1 compare db2 echo("***** ".DATABASE1." *****\n"); foreach($db2 as $table=>$structures2){ $structures1 = $db1[$table]; if(empty($structures1)) { echo(".$table not exist\n"); continue; } for($i=0; $i<count($structures2); $i++){ if(1==1 && !in_array($structures2[$i], $structures1)) echo $table.".".$structures2[$i]."\n"; } } // db2 compare db1 echo("***** ".DATABASE2." *****\n"); foreach($db1 as $table=>$structures1){ $structures2 = $db2[$table]; if(empty($structures2)) { echo(DATABASE2.".$table not exist\n"); continue; } for($i=0; $i<count($structures1); $i++){ if(1==0 && !in_array($structures1[$i], $structures2)) echo $table.".".$structures1[$i]."\n"; } } ?>

利用PHP腳本輔助MySQL數據庫管理4-兩個庫表結構差異比較