search
HomeBackend DevelopmentPHP TutorialPHP backs up the entire MySQL database, or specifies the table

The php class implements the function of fully backing up the database, or backing up specified tables in the database:

  1. class Backup
  2. {
  3. /**
  4. * @var stores the options
  5. */
  6. var $config;
  7. /**
  8. * @var stores the final sql dump
  9. */
  10. var $dump;
  11. /**
  12. * @var stores the table structure + inserts for every table
  13. */
  14. var $struktur = array();
  15. /**
  16. * @var zip file name
  17. */
  18. var $datei;
  19. /**
  20. * this function is the constructor and phrase the options
  21. * and connect to the database
  22. * @return
  23. */
  24. public function Backup($options)
  25. {
  26. // write options
  27. foreach($options AS $name => $value)
  28. {
  29. $this->config[$name] = $value;
  30. }
  31. // check mysql connection
  32. mysql_connect($this->config['mysql'][0], $this->config['mysql'][1], $this->config['mysql'][2]) or die(mysql_error());
  33. mysql_select_db($this->config['mysql'][3]) or die(mysql_error());
  34. }
  35. /**
  36. * this function start the backup progress its the core function
  37. * @return
  38. */
  39. public function backupDB()
  40. {
  41. // start backup
  42. if(isset($_POST['backup']))
  43. {
  44. // check if tables are selected
  45. if(empty($_POST['table']))
  46. {
  47. die("Please select a table.");
  48. }
  49. /**start backup **/
  50. $tables = array();
  51. $insert = array();
  52. $sql_statement = '';
  53. // lock tables
  54. foreach($_POST['table'] AS $table)
  55. {
  56. mysql_query("LOCK TABLE $table WRITE");
  57. // Read table structure
  58. $res = mysql_query('SHOW CREATE TABLE '.$table.'');
  59. $createtable = mysql_result($res, 0, 1);
  60. $str = "nn".$createtable."nn";
  61. array_push($tables, $str);
  62. // Read table "inserts"
  63. $sql = 'SELECT * FROM '.$table;
  64. $query = mysql_query($sql) or die(mysql_error());
  65. $feld_anzahl = mysql_num_fields($query);
  66. $sql_statement = '--
  67. -- Data Table `$table`
  68. --
  69. ';
  70. // start reading progress
  71. while($ds = mysql_fetch_object($query)){
  72. $sql_statement .= 'INSERT INTO `'.$table.'` (';
  73. for ($i = 0;$i if ($i ==$feld_anzahl-1){
  74. $sql_statement .= mysql_field_name($query,$i);
  75. } else {
  76. $sql_statement .= mysql_field_name($query,$i).', ';
  77. }
  78. }
  79. $sql_statement .= ') VALUES (';
  80. for ($i = 0;$i $name = mysql_field_name($query,$i);
  81. if (empty($ds->$name)){
  82. $ds->$name = 'NULL';
  83. }
  84. if ($i ==$feld_anzahl-1){
  85. $sql_statement .= '"'.$ds->$name.'"';
  86. } else {
  87. $sql_statement .= '"'.$ds->$name.'", ';
  88. }
  89. }
  90. $sql_statement .= ");n";
  91. }
  92. // insert "Inserts" into an array if not exists
  93. if(!in_array($sql_statement, $insert))
  94. {
  95. array_push($insert, $sql_statement);
  96. unset($sql_statement);
  97. }
  98. unset($sql_statement);
  99. }
  100. // put table structure and inserts together in one var
  101. $this->struktur = array_combine($tables, $insert);
  102. // create full dump
  103. $this->createDUMP($this->struktur);
  104. // create zip file
  105. $this->createZIP();
  106. /**end backup **/
  107. // send an email with the sql dump
  108. if(isset($this->config['email']) && !empty($this->config['email']))
  109. {
  110. $this->sendEmail();
  111. }
  112. // output
  113. echo '

    Backup war erfolgreich

    Download Backup


  114. ';
  115. }
  116. }
  117. /**
  118. * this function generate an email with attachment
  119. * @return
  120. */
  121. protected function sendEmail()
  122. {
  123. // start sending emails
  124. foreach($this->config['email'] AS $email)
  125. {
  126. $to = $email;
  127. $from = $this->config['email'][0];
  128. $message_body = "This email contains the database backup as a zip file.";
  129. $msep = strtoupper (md5 (uniqid (time ())));
  130. // set email header (only text)
  131. $header =
  132. "From: $fromrn" .
  133. "MIME-Version: 1.0rn" .
  134. "Content-Type: multipart/mixed; boundary="$msep"rnrn" .
  135. "--$mseprn" .
  136. "Content-Type: text/plainrn" .
  137. "Content-Transfer-Encoding: 8bitrnrn" .
  138. $message_body . "rn";
  139. // file name
  140. $dateiname = $this->datei;
  141. // get filesize of zip file
  142. $dateigroesse = filesize ($dateiname);
  143. // open file to read
  144. $f = fopen ($dateiname, "r");
  145. // save content
  146. $attached_file = fread ($f, $dateigroesse);
  147. // close file
  148. fclose ($f);
  149. // create attachment
  150. $attachment = chunk_split (base64_encode ($attached_file));
  151. // set attachment header
  152. $header .=
  153. "--" . $msep . "rn" .
  154. "Content-Type: application/zip; name='Backup'rn" .
  155. "Content-Transfer-Encoding: base64rn" .
  156. "Content-Disposition: attachment; filename='Backup.zip'rn" .
  157. "Content-Description: Mysql Datenbank Backup im Anhangrnrn" .
  158. $attachment . "rn";
  159. // mark end of attachment
  160. $header .= "--$msep--";
  161. // eMail Subject
  162. $subject = "Database Backup";
  163. // send email to emails^^
  164. if(mail($to, $subject, '', $header) == FALSE)
  165. {
  166. die("The email could not be sent. Please check the email address.");
  167. }
  168. echo "

    Email was successfully sent.

    ";
  169. }
  170. }
  171. /**
  172. * this function create the zip file with the database dump and save it on the ftp server
  173. * @return
  174. */
  175. protected function createZIP()
  176. {
  177. // Set permissions to 777
  178. chmod($this->config['folder'], 0777);
  179. // create zip file
  180. $zip = new ZipArchive();
  181. // Create file name
  182. $this->datei = $this->config['folder'].$this->config['mysql'][3]."_".date("j_F_Y_g:i_a").".zip";
  183. // Checking if file could be created
  184. if ($zip->open($this->datei, ZIPARCHIVE::CREATE)!==TRUE) {
  185. exit("cannot open datei.">n");
  186. }
  187. // add mysql dump to zip file
  188. $zip->addFromString("dump.sql", $this->dump);
  189. // close file
  190. $zip->close();
  191. // Check whether file has been created
  192. if(!file_exists($this->datei))
  193. {
  194. die("The ZIP file could not be created.");
  195. }
  196. echo "

    The zip was created.

    ";
  197. }
  198. /**
  199. * this function create the full sql dump
  200. * @param object $dump
  201. * @return
  202. */
  203. protected function createDUMP($dump)
  204. {
  205. $date = date("F j, Y, g:i a");
  206. $header = -- SQL Dump
  207. --
  208. -- Host: {$_SERVER['HTTP_HOST']}
  209. -- Erstellungszeit: {$date}
  210. --
  211. -- Datenbank: `{$this->config['mysql'][3]}`
  212. --
  213. -- --------------------------------------------------------
  214. HEADER;
  215. foreach($dump AS $name => $value)
  216. {
  217. $sql .= $name.$value;
  218. }
  219. $this->dump = $header.$sql;
  220. }
  221. /**
  222. * this function displays the output form to select tables
  223. * @return
  224. */
  225. public function outputForm()
  226. {
  227. // select all tables from database
  228. $result = mysql_list_tables($this->config['mysql'][3]);
  229. $buffer = '
  230. Select some tables


  231. ';
  232. echo $buffer;
  233. }
  234. }
  235. ?>
复制代码

备份用法:
  1. //You can add as many email addresses as you like
  2. $options = array('email' => array('email1', 'email2'),
  3. 'folder' => './backup/',
  4. 'mysql' => array('localhost', 'root', '****', 'database'));
  5. $b = new Backup($options);
  6. // if submit form start backup
  7. if(isset($_POST['backup']))
  8. {
  9. // start backup
  10. $b->backupDB();
  11. }
  12. // display tables
  13. $b->outputForm();
  14. ?>
复制代码

php, MySQL


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
Working with Flash Session Data in LaravelWorking with Flash Session Data in LaravelMar 12, 2025 pm 05:08 PM

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

cURL in PHP: How to Use the PHP cURL Extension in REST APIscURL in PHP: How to Use the PHP cURL Extension in REST APIsMar 14, 2025 am 11:42 AM

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

Simplified HTTP Response Mocking in Laravel TestsSimplified HTTP Response Mocking in Laravel TestsMar 12, 2025 pm 05:09 PM

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

12 Best PHP Chat Scripts on CodeCanyon12 Best PHP Chat Scripts on CodeCanyonMar 13, 2025 pm 12:08 PM

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

Explain the concept of late static binding in PHP.Explain the concept of late static binding in PHP.Mar 21, 2025 pm 01:33 PM

Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

PHP Logging: Best Practices for PHP Log AnalysisPHP Logging: Best Practices for PHP Log AnalysisMar 10, 2025 pm 02:32 PM

PHP logging is essential for monitoring and debugging web applications, as well as capturing critical events, errors, and runtime behavior. It provides valuable insights into system performance, helps identify issues, and supports faster troubleshoot

Discover File Downloads in Laravel with Storage::downloadDiscover File Downloads in Laravel with Storage::downloadMar 06, 2025 am 02:22 AM

The Storage::download method of the Laravel framework provides a concise API for safely handling file downloads while managing abstractions of file storage. Here is an example of using Storage::download() in the example controller:

HTTP Method Verification in LaravelHTTP Method Verification in LaravelMar 05, 2025 pm 04:14 PM

Laravel simplifies HTTP verb handling in incoming requests, streamlining diverse operation management within your applications. The method() and isMethod() methods efficiently identify and validate request types. This feature is crucial for building

See all articles

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

Hot Tools

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version