您好这是我用来备份一个mysql数据库的php代码,它需要所有的数据库和所有的表,我想在数据库中取一个特定的表,而不是所有的表。有人能告诉我如何修改php代码,以便使用一个表而不是所有表吗?代码如下:
<?php
/**
* Updated: Mohammad M. AlBanna
* Website: MBanna.info
* /
//MySQL server and database
$dbhost = 'localhost';
$dbuser = 'root';
$dbpass = '';
$dbname = 'novtech';
$tables = '*';
//Call the core function
backup_tables($dbhost, $dbuser, $dbpass, $dbname, $tables);
//Core function
function backup_tables($host, $user, $pass, $dbname, $tables = '*') {
$link = mysqli_connect($host,$user,$pass, $dbname);
// Check connection
if (mysqli_connect_errno())
{
echo "Failed to connect to MySQL: " . mysqli_connect_error();
exit;
}
mysqli_query($link, "SET NAMES 'utf8'");
//get all of the tables
if($tables == '*')
{
$tables = array();
$result = mysqli_query($link, 'SHOW TABLES');
while($row = mysqli_fetch_row($result))
{
$tables[] = $row[0];
}
}
else
{
$tables = is_array($tables) ? $tables : explode(',',$tables);
}
$return = '';
//cycle through
foreach($tables as $table)
{
$result = mysqli_query($link, 'SELECT * FROM '.$table);
$num_fields = mysqli_num_fields($result);
$num_rows = mysqli_num_rows($result);
$return.= 'DROP TABLE IF EXISTS '.$table.';';
$row2 = mysqli_fetch_row(mysqli_query($link, 'SHOW CREATE TABLE '.$table));
$return.= "\n\n".$row2[1].";\n\n";
$counter = 1;
//Over tables
for ($i = 0; $i < $num_fields; $i++)
{ //Over rows
while($row = mysqli_fetch_row($result))
{
if($counter == 1){
$return.= 'INSERT INTO '.$table.' VALUES(';
} else{
$return.= '(';
}
//Over fields
for($j=0; $j<$num_fields; $j++)
{
$row[$j] = addslashes($row[$j]);
$row[$j] = str_replace("\n","\\n",$row[$j]);
if (isset($row[$j])) { $return.= '"'.$row[$j].'"' ; } else { $return.= '""'; }
if ($j<($num_fields-1)) { $return.= ','; }
}
if($num_rows == $counter){
$return.= ");\n";
} else{
$return.= "),\n";
}
++$counter;
}
}
$return.="\n\n\n";
}
//save file , db-backup
//$fileName = 'novtechDB-'.time().'-'.(md5(implode(',',$tables))).'.sql';
$fileName = 'novtechDB'.'.sql';
$handle = fopen($fileName,'w+');
fwrite($handle,$return);
if(fclose($handle)){
echo "Done, the file name is: ".$fileName;
exit;
}
}
我将$tables=array('mytable')放在tables数组[foreach($tables as$table)]的循环之前,现在正在工作,但它给了我一个错误:注意:未定义的变量:return。有人能帮我找出哪里不对劲吗?如何修复?
2条答案
按热度按时间czfnxgou1#
在循环tables数组之前,将数组设置为要获取的表。
删除注解的代码块
//get all of the tables
dauxcl2d2#
好极了!!!我修好了谢谢
步骤1:我删除了注解为//get所有表的代码块
第二步:
我把$tables=array('mytable')放在tables数组[foreach($tables as$table)]的循环之前,现在我正在工作,但它给了我一个错误。注意:未定义变量:return。
第3步:我通过设置return=null来修复它;在对表进行注解的代码块之前