php實現mysql同步的實現方法

來源:互聯網
上載者:User

拿到需求之後,發現這兩個網站的MYSQL資料庫都不能遠端存取(安全第一吧)。於是想起了 平時使用的CSV檔案批量錄入資料。於是
嘗試使用CSV匯入匯出。
匯入到處架構如下:
1首先將資料匯出成CSV的格式。
建立一檔案,放置在中國伺服器上:csv.php.其實就是一個匯出函數,通過資料庫,表名和SQL語句來獲得資料。
csv.php 複製代碼 代碼如下:<?php
/**
* 輸出一個資料庫中的表到一個CSV檔案中
*
* @param string Mysql資料庫的主機
* @param string 資料庫名稱
* @param string 資料庫中的表名
* @param string 資料庫的串連使用者名稱
* @param string 資料庫的串連密碼
* @param string 資料庫的表名
* @param string 資料庫的
* @param string 錯誤頁面
* @param string SQL語句
*
* @return text 返回CSV格式的內容
*
* @access public
*/
function PMA_exportData(host,db,user,pass,filename,table, crlf, error_url, sql_query) {
what="csv";
csv_terminated=" ";
csv_separator=",";
csv_enclosed=" ";
csv_escaped=" ";
mysql_connect(host, user,pass) or die("不能串連資料庫,錯誤碼如下:" . mysql_error());
mysql_select_db(db);
result = mysql_query(sql_query);
fields_cnt = mysql_num_fields(result);
cc="";
//fp = fopen(filename, 'w');
// 格式化資料
while (row = mysql_fetch_row(result)) {
schema_insert = '';
for (j = 0; j < fields_cnt; j++) {
if (!isset(row[j]) || is_null(row[j])) {
schema_insert .="NULL"; //用什麼來替換空值
} elseif (row[j] == '0' || row[j] != '') {
// loic1 :用引號包含欄位值
if (csv_enclosed == '') {
schema_insert .= row[j];
} else {
schema_insert .= csv_enclosed
. str_replace(csv_enclosed, csv_escaped . csv_enclosed, row[j])
. csv_enclosed;
}
} else {
schema_insert .= '';
}
if (j < fields_cnt-1) {
schema_insert .= csv_separator;
}
} // end for
// fwrite(fp,schema_insert . csv_terminated);
cc.=schema_insert . csv_terminated;
} // end while
mysql_free_result(result);
// fclose(fp);
return cc;
}
?>

2.將CSV格式的內容匯入到表中
在美國伺服器上建立個匯入的檔案,放置:import.php ,代碼如下: 複製代碼 代碼如下:<?php
/**
* 從一個上傳的檔案中將資料匯入到一個表中
*
* @param string Mysql資料庫的主機
* @param string 資料庫名稱
* @param string 資料庫中的表名
* @param string 資料庫的串連使用者名稱
* @param string 資料庫的串連密碼
* @param string 資料庫的表名
*
* @return bool 是否執行成功
*
* @access public
*/
function uploadFileOfCsv(host,db,user,pass,table,content){
mysql_connect(host, user,pass) or die("不能串連資料庫,錯誤碼如下:" . mysql_error());
mysql_select_db(db);
result = mysql_query("select * from table");
fields_cnt = mysql_num_fields(result);
test2=array(array());
rownum=0;
log("提取的資料如下:<br>".content);
fd1 = fopen ("C:test.csv",'a');
fwrite(fd1,content);
fclose(fd1);
fp = fopen("C:test.csv", "r");
while (buffer = fgets(fp,4096))
{
i++;
tmp_arr = explode(",",buffer);
if(trim(tmp_arr[0]) == ""){
echo "<script language='javascript'>";
echo "alert('第".i."行的ID空,請檢查!');";
echo "location.href=document.referrer;";
echo "</script>";
exit;
}
query = "INSERT INTO db.table";
query .=" values ( ";
for(q=0;q<fields_cnt;q++){
if(q==fields_cnt-1){
tmp=tmp_arr[q];
query.="'tmp');";
}else{
tmp=tmp_arr[q];
query.="'tmp',";
}
}//end for(q=0;
log2(query);
mysql_query(query);
}
fclose(fp);
return "OK";
unlink("C:test.csv");
}
function log2(event = null){
//global db;
// global login;
if(LOG_ENABLED){
now = date("Y-M-d H:i:s");
fd = fopen ("C:log.html",'a');
log = now." "._SERVER["REMOTE_ADDR"] ." - event <br>";
fwrite(fd,log);
fclose(fd);
}
}
?>

3調用函數執行匯出
在中國伺服器上再建立一個 檔案:test_export.php,調用前面的csv.php的函數,然後將資料轉成CSV,然後臨時存到一個表單的
textera中,注意表單提交的位置: 複製代碼 代碼如下:<?php
require_once("csv.php");
host="localhost";
db="project";
user="root";
pass="";
//匯出tb_contact表的資料為csv檔案
filename = 'file4.csv';
cc=PMA_exportData( host,db,user,pass, filename,"tb_project_dvp", "", "test.php", "select * from tb_project_dvp") ;
handle = fopen(filename, "rb");
contents = fread(handle, filesize (filename));
fclose(handle);
?>
<form id="form1" name="form1" method="post" action="http://美國網站的地址/test2.php">
<p>
<textarea name="textarea" cols="180" rows="30"><?php echo cc?></textarea>
<input type="hidden" name="action" value="1"/>
</p>
<p>
<input type="submit" name="Submit" value="提交">
</p>
</form>

再在美國伺服器上防置如下檔案用於接受上傳上來的資料,檔案名稱為 test_import.php: 複製代碼 代碼如下:<?php
require_once("csv.php");
require_once("import.php");
host="localhost";
db="wintopweb";
user="root";
pass="";
if(_POST['action']=="1"){
content=_POST['textarea'];
echo uploadFileOfCsv(host,db,user,pass,"tb_project_dvp",content);
}
?>

最後 利用Windows-xp/nt/03 控制面版中內建 任務計劃,調度執行中國伺服器test_export.php檔案即可

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.