php設定表前綴的方法:先輸入資料庫使用者名稱和密碼;然後連接資料庫;接著透過「str_replace($seach,$replace,$name['0']);」語句修改表前綴即可。
推薦:《PHP影片教學》
php批次變更資料庫表前綴
我們經常會遇到替換或添加資料庫表前綴的問題,透過資料庫匯出,在記事本上批次更改,然後再匯出,這也是一種方法,但是不夠方便。
透過下面這個方法,輕鬆搞定,程式碼如下,有用到的頂起。
<?php $database = "databaseName"; //数据库名称 $user = "root"; //数据库用户名 $pwd = "pwd"; //数据库密码 $replace ='pre_'; //替换后的前缀 $seach = 'pre1_'; //要替换的前缀 $db=mysql_connect("localhost","$user","$pwd") or die("连接数据库失败:".mysql_error()); //连接数据库 $tables = mysql_list_tables("$database"); while($name = mysql_fetch_array($tables)) { $table = str_replace($seach,$replace,$name['0']); mysql_query("rename table $name[0] to $table"); } ?>
如果是加入前綴只需要變化一點點
$table = str_replace($seach,$replace,$name['0']);换成 $table = $replace.$name['0'];
就可以了。
以上是php如何設定表格前綴的詳細內容。更多資訊請關注PHP中文網其他相關文章!