二款php数据库备份类程序代码
小生今天没事收集了两款php数据库备份程序,这里可以完成功能有:1.备份指定数据表、2.打包成zip文件、3.发送到指定邮箱地址,基本功能就这些了
下面看下使用方法:
代码如下 | 复制代码 |
error_reporting(0);//消灭万恶的php报警提示 |
具体类实现:
代码如下 | 复制代码 |
备份完成啦下载备份'; } } /** * 发送邮件函数 * @return */ protected function sendEmail() { // 读取邮箱地址 foreach($this->config['email'] AS $email) { $to = $email; $from = $this->config['email'][0]; $message_body = "本邮件中包含的zip压缩包为数据库备份"; $msep = strtoupper (md5 (uniqid (time ()))); // 设置email头 $header = "From: $fromrn" . "MIME-Version: 1.0rn" . "Content-Type: multipart/mixed; boundary=".$msep."rnrn" . "--$mseprn" . "Content-Type: text/plainrn" . "Content-Transfer-Encoding: 8bitrnrn" . $message_body . "rn"; // 文件名 $dateiname = $this->datei; // 压缩包大小 $dateigroesse = filesize ($dateiname); // 读取压缩包 $f = fopen ($dateiname, "r"); // 保存到附件 $attached_file = fread ($f, $dateigroesse); // 关闭压缩包 fclose ($f); // 建立一个附件 $attachment = chunk_split (base64_encode ($attached_file)); // 设置附件头 $header .= "--" . $msep . "rn" . "Content-Type: application/zip; name='Backup'rn" . "Content-Transfer-Encoding: base64rn" . "Content-Disposition: attachment; filename='Backup.zip'rn" . "Content-Description: Mysql Datenbank Backup im Anhangrnrn" . $attachment . "rn"; // 标记附件结束未知 $header .= "--$msep--"; // 邮件标题 $subject = "数据库备份"; // 发送邮件需要开启php相应支持哦^^ if(mail($to, $subject, '', $header) == FALSE) { die("无法发送邮件,请检查邮箱地址"); } echo " 邮件发送成功 ";} } /** * 建立数据库备份的压缩包并保存到服务器指定目录中 * @return */ protected function createZIP() { // 文件夹权限要够 chmod($this->config['folder'], 0777); // 建立压缩包 $zip = new ZipArchive(); // 设置压缩包文件名 $this->datei = $this->config['folder'].$this->config['mysql'][3]."_" .date("j_F_Y_g_i_a").".zip"; // 看看压缩包能不能打开 if ($zip->open($this->datei, ZIPARCHIVE::CREATE)!==TRUE) { exit("无法打开 datei.">n"); } // 把dump出来的数据放到压缩包里 $zip->addFromString("dump.sql", $this->dump); // 关闭压缩包 $zip->close(); // 看看压缩包有没有生成 if(!file_exists($this->datei)) { die("无法生成压缩包"); } echo " 数据库备份压缩包成功生成 ";} /** * mysql dump函数 * @param object $dump * @return */ protected function createDUMP($dump) { $date = date("F j, Y, g:i a"); $header = -- SQL Dump -- -- Host: {$_SERVER['HTTP_HOST']} -- Erstellungszeit: {$date} -- -- Datenbank: `{$this->config['mysql'][3]}` -- -- -------------------------------------------------------- HEADER; foreach($dump AS $name => $value) { $sql .= $name.$value; } $this->dump = $header.$sql; } /** * 生成选择数据表的界面函数 * @return */ public function outputForm() { // 选择全部 $result = mysql_list_tables($this->config['mysql'][3]); $buffer = ' '; echo $buffer; } } ?> |
通用数据库备份类
代码如下 | 复制代码 |
/*数据库备份:NOTICE:此类要添加数据库连接才能正常工作*/ |

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

To work on file upload we are going to use the form helper. Here, is an example for file upload.

In this chapter, we are going to learn the following topics related to routing ?

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

Validator can be created by adding the following two lines in the controller.

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c
