php mysqli批量替换数据库表前缀实例
在php中有时我们要替换数据库中表前缀但是又不苦于一个个表去修改前缀吧,下面我自己写了一个mysqli批量替换数据库表前缀的php程序,希望些方法对你有帮助,代码如下:
<?php header('http-equiv="Content-Type" content="text/html; charset=utf-8"'); $DB_host = "localhost"; //数据库主机 $DB_user = "root"; //数据库用户 $DB_psw = "root3306"; //数据库密码 $DB_datebase = "gk_yue39_com"; //数据库名 $DB_charset = "utf8"; //数据库字符集 $dbprefix = "yue392_com_"; $new_dbprefix = "yue39_com_"; $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>'; //开源代码phprm.com } } echo '</tr>'; } echo '</table>'; $result->free(); //释放结果集 $db->close(); //关闭连接
Copy after login
本文地址:
转载随意,但请附上文章地址:-)
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago
By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago
By 尊渡假赌尊渡假赌尊渡假赌
How Long Does It Take To Beat Split Fiction?
4 weeks ago
By DDD
R.E.P.O. Save File Location: Where Is It & How to Protect It?
4 weeks ago
By DDD
Two Point Museum: All Exhibits And Where To Find Them
1 months ago
By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)
