以下的文章主要向大家介紹的是MySQL備份之根據表備份,本文主要是以實際應用代碼的方式來引出MySQL備份之根據表備份,下面就是文章的主要內容描述,希望會給你帶來一些幫助在此方面。
- <?php
- function datatosql($table)
- {
- global $db;
- $tabledump = "DROP TABLE IF EXISTS $table;\n";
- $createtable = $db->query("SHOW CREATE TABLE $table");
- $create = $db->fetch_array($createtable);
- $tabledump .= $create[1].";\n\n";
- $rows = $db->query("SELECT * FROM $table");
- $numfields = $db->num_fields($rows);
- $numrows = $db->num_rows($rows);
- while ($row = $db->fetch_array($rows)){
- $comma = "";
- $tabledump .= "INSERT INTO $table VALUES(";
- for($i = 0; $i < $numfields; $i++)
- {
- $tabledump .= $comma."'".MySQL_escape_string($row[$i])."'";
- $comma = ",";
- }
- $tabledump .= ");\n";
- }
- $tabledump .= "\n";
- return $tabledump;
- }
以上的相關內容就是對MySQL備份之-根據表備份的介紹,望你能有所收獲。
以上的相關內容就是對MySQL備份之-根據表備份的介紹,望你能有所收獲。