>  기사  >  백엔드 개발  >  PHP를 사용하여 백업 데이터베이스 ZIP을 구현하고 내보내기

PHP를 사용하여 백업 데이터베이스 ZIP을 구현하고 내보내기

巴扎黑
巴扎黑원래의
2016-11-23 14:01:151045검색

 经常在有的PHP开源系统中,看到有备份数据库并导出的方法,其实代码不复杂,下面 
大概讲解下,以WINDOWS为例子,两类方法,一个是目录文件夹要有执行脚本权限的, 
一个个是没有权限的,代码如下: 

一) 

<?php   
    
$username = "root";    
$password = "";    
$hostname = "localhost";    
$dbname   = "test";   
    
  
$dumpfname = $dbname . "_" . date("Y-m-d_H-i-s").".sql";   
$command = "C:\\xampp\\mysql\\bin\\mysqldump --add-drop-table --host=$hostname   
    --user=$username ";   
if ($password)    
        $command.= "--password=". $password ." ";    
$command.= $dbname;   
$command.= " > " . $dumpfname;   
system($command);   
    
// zip 数据文件  
$zipfname = $dbname . "_" . date("Y-m-d_H-i-s").".zip";   
$zip = new ZipArchive();   
if($zip->open($zipfname,ZIPARCHIVE::CREATE))    
{   
   $zip->addFile($dumpfname,$dumpfname);   
   $zip->close();   
}   
    
// read zip file and send it to standard output   
if (file_exists($zipfname)) {   
    header(&#39;Content-Description: File Transfer&#39;);   
    header(&#39;Content-Type: application/octet-stream&#39;);   
    header(&#39;Content-Disposition: attachment; filename=&#39;.basename($zipfname));   
    flush();   
    readfile($zipfname);   
    exit;   
}   
?>



方法2 文件夹没相关权限 

<?php   
ob_start();   
    
$username = "root";    
$password = "";    
$hostname = "localhost";    
$dbname   = "test";   
    
$command = "C:\\xampp\\mysql\\bin\\mysqldump --add-drop-table --host=$hostname   
    --user=$username ";   
if ($password)    
        $command.= "--password=". $password ." ";    
$command.= $dbname;   
system($command);   
    
$dump = ob_get_contents();    
ob_end_clean();   
    
  
//不ZIP了  
header(&#39;Content-Description: File Transfer&#39;);   
header(&#39;Content-Type: application/octet-stream&#39;);   
header(&#39;Content-Disposition: attachment; filename=&#39;.basename($dbname . "_" .    
    date("Y-m-d_H-i-s").".sql"));   
flush();   
echo $dump;   
exit();]]>   
?>


성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
이전 기사:PHP 트래버스 객체다음 기사:PHP 트래버스 객체