gpt4 book ai didi

php - 备份mysql数据库取特定表

转载 作者:行者123 更新时间:2023-11-29 10:02:29 25 4
gpt4 key购买 nike

你好,这是我用来备份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') 放在表 array[foreach($tables as $table)] 的循环之前,我现在正在工作,但它给了我一个错误:注意: undefined variable :返回。请问有人可以帮我找出问题所在吗?如何解决?

最佳答案

在tables数组循环之前,将数组设置为你想要抓取的表。

$tables = ['tale1','table2','table3'];
foreach($tables as $table)

去掉注释的代码块//获取所有的表

关于php - 备份mysql数据库取特定表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52630315/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com