PHP备份数据库生成SQL文件并下载的函数代码

前端之家收集整理的这篇文章主要介绍了PHP备份数据库生成SQL文件并下载的函数代码前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

<div class="codetitle"><a style="CURSOR: pointer" data="36936" class="copybut" id="copybut36936" onclick="doCopy('code36936')"> 代码如下:

<div class="codebody" id="code36936">
<!?PHP
/** 备份数据库结构 **/
/
函数名称:table2sql()
函数功能:把表的结构转换成为sql
函数参数:$table: 要进行提取的表名
返 回 值:返回提取后的结果,sql集合
函数作者:heiyeluren
/
function table2sql($table)
{
global $db;
$tabledump = "DROP TABLE IF EXISTS $table;n";
$createtable = $db--->query("SHOW CREATE TABLE $table");
$create = $db->fetch_row($createtable);
$tabledump .= $create[1].";nn";
return $tabledump;
}
/** 备份数据库结构和所有数据 **/
/
函数名称:data2sql()
函数功能:把表的结构和数据转换成为sql
函数参数:$table: 要进行提取的表名
返 回 值:返回提取后的结果,sql集合
函数作者:heiyeluren
/
function data2sql($table)
{
global $db;
$tabledump = "DROP TABLE IF EXISTS $table;n";
$createtable = $db->query("SHOW CREATE TABLE $table");
$create = $db->fetch_row($createtable);
$tabledump .= $create[1].";nn";
$rows = $db->query("SELECT FROM $table");
$numfields = $db->num_fields($rows);
$numrows = $db->num_rows($rows);
while ($row = $db->fetch_row($rows))
{
$comma = "";
$tabledump .= "INSERT INTO $table VALUES(";
for($i = 0; $i < $numfields; $i++)
{
$tabledump .= $comma."'".MysqL_escape_string($row[$i])."'";
$comma = ",";
}
$tabledump .= ");n";
}
$tabledump .= "n";
return $tabledump;
}
?>
<!--?PHP
$host="localhost"; //主机名
$user="root"; //MysqL用户名
$password="root"; //密码
$dbname="Dedecmsv4"; //备份的数据库
MysqL_connect($host,$user,$password);
MysqL_select_db($dbname);
$q1=MysqL_query("show tables");
while($t=MysqL_fetch_array($q1)){
$table=$t[0];
$q2=MysqL_query("show create table $table");
$sql=MysqL_fetch_array($q2);
$MysqL.=$sql['Create Table'].";rnrn";#DDL
$q3=MysqL_query("select
from $table");
while($data=MysqL_fetch_assoc($q3))
{
$keys=array_keys($data);
$keys=array_map('addslashes',$keys);
$keys=join(',',$keys);
$keys="".$keys."";
$vals=array_values($data);
$vals=array_map('addslashes',$vals);
$vals=join("','",$vals);
$vals="'".$vals."'";
$MysqL.="insert into $table($keys) values($vals);rn";
}
$MysqL.="rn";
}
$filename=date('Ymd')."_".$dbname.".sql"; //文件名为当天的日期
$fp = fopen($filename,'w');
fputs($fp,$MysqL);
fclose($fp);
echo "数据备份成功,生成备份文件".$filename;
?>

原文链接:https://www.f2er.com/php/27344.html

猜你在找的PHP相关文章