美文网首页app开发
批量修改MySQL表前缀

批量修改MySQL表前缀

作者: 米酒真香 | 来源:发表于2016-12-15 17:47 被阅读51次

    此方法适用于本来就有表前缀的数据库,如果本来没有表前缀,要添加表前缀,设置$dbprefix="";是无效的。

    <?php 
    header('Content-type:text/html;charset=utf-8');
    $DB_host = "localhost"; //数据库主机 
    $DB_user = "root"; //数据库用户 
    $DB_psw = "root"; //数据库密码 
    $DB_datebase = "ddp"; //数据库名 
    $DB_charset = "utf8"; //数据库字符集 
    $dbprefix="aa_"; 
    $new_dbprefix="bb_"; 
    $db = new mysqli( $DB_host, $DB_user, $DB_psw ); //实例化对象 
      
    //检查连接 
    if (mysqli_connect_errno ()) { 
     printf ( "Connect failed: %sn", mysqli_connect_error () ); 
     exit (); 
    } 
      
    $db->select_db ( $DB_datebase ); //选择操作数据库 
      
    $db->set_charset ( $DB_charset ); //设置数据库字符集 
      
    //执行一个查询 
    $sql = 'show tables'; 
    $result = $db->query ( $sql ); 
      
    echo $result->num_rows . ' 行结果 ' . $result->field_count . ' 列内容<br/>'; 
      
    //$result->data_seek('5');//从结果集中第5条开始取结果 
      
    echo '<table border="1" cellspacing="0" cellpadding="0" align="center" width="90%">'; 
      
    //循环输出字段名 
    //$result->field_seek(2);//从字段集中第2条开始取结果 
    while ( true == ($field = $result->fetch_field ()) ) { 
     echo '<th>' . $result->current_field . '_' . $field->name . '(' . $field->length . ')</th>'; 
    } 
      
    //循环输出查询结果 
    while ( true == ($row = $result->fetch_assoc ()) ) { 
     echo '<tr>'; 
     foreach ( $row as $col ) { 
    $sql="rename table `".$col."` to `".str_replace ( $dbprefix, $new_dbprefix, $col)."`"; 
     if($db->query ( $sql )){ 
     echo '<td align="center">' . $sql. '</td><td><font color="blue"> success</font></td>'; 
     }else{ 
     echo '<td align="center">' . $sql. '</td><td><font color="red"> failed</font></td>';
     } 
     } 
     echo '</tr>'; 
    } 
      
    echo '</table>'; 
    $result->free ();//释放结果集 
    $db->close (); //关闭连接 
    ?>
    

    相关文章

      网友评论

        本文标题:批量修改MySQL表前缀

        本文链接:https://www.haomeiwen.com/subject/ngsgmttx.html