DiscuzX/utility/convert/source/d7.2_x1.0/table/uc_badwords.php

47 lines
1.3 KiB
PHP

<?php
/**
* DiscuzX Convert
*
* $Id: uc_badwords.php 10469 2010-05-11 09:12:14Z monkey $
*/
$curprg = basename(__FILE__);
$table_source = $db_source->tablepre.'uc_badwords';
$table_target = $db_target->tablepre.'ucenter_badwords';
$limit = 2000;
$nextid = 0;
$nexttable = 0;
$start = getgpc('start');
if(empty($start)) {
$source_exist = $db_source->result_first("SHOW TABLES LIKE '".substr($table_source, strpos($table_source, '.') + 1)."'");
$target_exist = $db_target->result_first("SHOW TABLES LIKE '".substr($table_target, strpos($table_target, '.') + 1)."'");
if(empty($source_exist) || empty($target_exist)) {
$nexttable = 1;
} else {
$start = 0;
$db_target->query("TRUNCATE $table_target");
}
}
if(empty($nexttable)) {
$query = $db_source->query("SELECT * FROM $table_source WHERE id>'$start' ORDER BY id LIMIT $limit");
while ($row = $db_source->fetch_array($query)) {
$nextid = $row['id'];
$row = daddslashes($row, 1);
$data = implode_field_value($row, ',', db_table_fields($db_target, $table_target));
$db_target->query("INSERT INTO $table_target SET $data");
}
}
if($nextid) {
showmessage("继续转换数据表 ".$table_source." id > $nextid", "index.php?a=$action&source=$source&prg=$curprg&start=$nextid");
}
?>