search
Homephp教程php手册php数据库备份脚本

php数据库备份脚本

Jun 13, 2016 am 08:55 AM
hostlocalhostphprootusercodebackupdatabaseScript

php数据库备份脚本

 php数据库备份脚本

  代码如下:

  

  // 备份数据库

  $host = "localhost";

  $user = "root"; //数据库账号

  $password = ""; //数据库密码

  $dbname = "mysql"; //数据库名称

  // 这里的账号、密码、名称都是从页面传过来的

  if (!mysql_connect($host, $user, $password)) // 连接mysql数据库

  {

  echo '数据库连接失败,请核对后再试';

  exit;

  }

  if (!mysql_select_db($dbname)) // 是否存在该数据库

  {

  echo '不存在数据库:' . $dbname . ',请核对后再试';

  exit;

  }

  mysql_query("set names 'utf8'");

  $mysql = "set charset utf8; ";

  $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'] . "; ";

  $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); ";

  }

  }

  $filename = $dbname . date('Ymjgi') . ".sql"; //存放路径,默认存放到项目最外层

  $fp = fopen($filename, 'w');

  fputs($fp, $mysql);

  fclose($fp);

  echo "数据备份成功";

  ?>

Statement
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

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Chat Commands and How to Use Them
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!