Home > php教程 > php手册 > PHP使用外部命令导出数据库,备份到服务器并下载到本地,php外部命令

PHP使用外部命令导出数据库,备份到服务器并下载到本地,php外部命令

WBOY
Release: 2016-06-13 09:07:11
Original
1177 people have browsed it

PHP使用外部命令导出数据库,备份到服务器并下载到本地,php外部命令

<span><?<span>php

    </span><span>//</span><span> $dumpFileName目录要有可写权限</span>
    <span>$DbHost</span> = 'localhost'<span>;
  </span><span>$DbUser</span>  = 'root'<span>;
  </span><span>$DbPwd</span>   = '123456'<span>;
  </span><span>$DbName</span>  = 'a'<span>;
   </span><span>$fileName</span> = <span>$DbName</span> . '_MySQL_data_backup_' . <span>date</span>('YmdHis) . '.sql'<span>;
  $dumpFileName= "/var/$fileName";


  header("Content-Disposition: attachment; filename=" . $fileName);
  header("Content-type: application/octet-stream");
  header("Pragma:no-cache"); 
  header("Expires:0");
    
  echo `mysqldump -h $DbHost -u$DbUser -p$DbPwd $DbName > $dumpFileName`;
    
  $hd = fopen($dumpFileName, </span>'rb'<span>);
  echo fread($hd, filesize($dumpFileName));
  fclose($hd);    
 
?></span></span>
Copy after login

 

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template