首頁 > php教程 > PHP源码 > PHP 对 MySQL 数据库进行备份

PHP 对 MySQL 数据库进行备份

PHP中文网
發布: 2016-05-25 17:15:51
原創
1052 人瀏覽過

php代码

<?php
      mysql_connect(&#39;localhost&#39;, &#39;test&#39;, &#39;123456&#39;);
      mysql_select_db(&#39;test&#39;);
      if(copy_table(&#39;products&#39;, &#39;products_bak&#39;)) {
	echo "success\n";
      }
      else {
	echo "failure\n";
      }

      function copy_table($from, $to) {
	if(table_exists($to)) {
	  $success = false;
	}
	else {
	  mysql_query("CREATE TABLE $to LIKE $from");
	  mysql_query("INSERT INTO $to SELECT * FROM $from");
	  $success = true;
        }
        return $success;
      }

      function table_exists($tablename, $database = false) {
	if(!$database) {
	  $res = mysql_query("SELECT DATABASE()");
          $database = mysql_result($res, 0);
        }
        $res = mysql_query("
           SELECT COUNT(*) AS count
           FROM information_schema.tables
           WHERE table_schema = &#39;$database&#39;
           AND table_name = &#39;$tablename&#39;
        ");
        return mysql_result($res, 0) == 1;
      }
?>
登入後複製
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
最新問題
熱門推薦
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板