|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
不懂的问题有很多高手帮你解决。但不要认为你是新手,就不能帮助别人,比如今天你学会了怎样安装PHP,明天还可能有朋友会问这个问题,你就可以给他解答,不要认为这是浪费时间,忙别人其实就是帮助自己。
有些时分能够需求批量转换mysql表的引擎,以下为php操作完成
<?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";
}
} 本文链接http://www.cxybl.com/html/wlbc/Php/20120607/28510.html学习如何将PHP与HTML结合起来完成简单动态页面 |
|