资源简介
介绍一个php类实现完整备份数据库,或者备份数据库中指定表的功能。
代码片段和文件信息
class Backup
{
/**
* @var stores the options
*/
var $config;
/**
* @var stores the final sql dump
*/
var $dump;
/**
* @var stores the table structure + inserts for every table
*/
var $struktur = array();
/**
* @var zip file name
*/
var $datei;
/**
* this function is the constructor and phrase the options
* and connect to the database
* @return
*/
public function Backup($options)
{
// write options
foreach($options AS $name => $value)
{
$this->config[$name] = $value;
}
// check mysql connection
mysql_connect($this->config[‘mysql‘][0] $this->config[‘mysql‘][1] $this->config[‘mysql‘][2]) or die(mysql_error());
mysql_select_db($this->config[‘mysql‘][3])
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2017-05-06 14:46 php备份整个MySQL数据库,或者指定表的类\
文件 8998 2017-05-06 14:46 php备份整个MySQL数据库,或者指定表的类\code.php
文件 219 2017-01-17 11:40 php备份整个MySQL数据库,或者指定表的类\php中文网免费下载站.txt
文件 1773 2017-02-21 15:15 php备份整个MySQL数据库,或者指定表的类\PHP中文网:一切建站资源免费下载.lnk
评论
共有 条评论