PHP / MySQL-重命名多个表及其列

时间:2019-05-13 14:55:12

标签: php mysql preg-replace preg-match

我在SO上进行了搜索,发现了一些与我的问题类似的主题。由于有了这些主题,我得以编写一个函数来重命名表及其列的前缀。

当前,我的脚本仅适用于我的表。具有特定前缀的所有表都将被重命名,因此一旦启动函数,名为“ PREFIX_users”的表将仅是“ users”。我的问题现在是,表中所有列的功能都无法正常工作。我没有收到任何php错误/警告,只是我的列名相同。

这是我的代码:

/*
 * Rename tables and columns inside sysrec
 * @param db name
*/
public function renameTablesColumns($database) {
    $this->db->prepare("use ".$database."");
    $sqlShowSORTables = "SHOW TABLES ";
    $statement = $this->db->prepare($sqlShowSORTables);
    $statement->execute();
    $SORtables = $statement->fetchAll(PDO::FETCH_NUM);

    foreach($SORtables as $renameTable){

        $new_table_prefix = '';
        $old_table_prefix = 'PRAEFIX_';

        $old_table = $renameTable[0];
        if(!preg_match('/^'.$old_table_prefix.'/', $old_table)) {
            $new_table=$old_table;
        } else {
            $new_table = preg_replace('/^'.$old_table_prefix.'/', $new_table_prefix, $old_table);
            $sql[] = "ALTER TABLE ".$database.".".$old_table." RENAME TO ".$database.".".$new_table."; ";
        }

        $sqlShowSORColumns = "SHOW COLUMNS FROM ".$renameTable[0]." ";
        $statement = $this->db->prepare($sqlShowSORColumns);
        $statement->execute();
        $columns = $statement->fetchAll(PDO::FETCH_NUM);

        foreach($columns as $renameColumn) {
            $new_column_prefix = '';
            $old_column_prefix = 'PRAEFIX_';

            $old_column = $renameColumn[0];
            if(!preg_match('/^'.$old_column_prefix.'/', $old_column)) {
                $new_column=$old_column;
            } else {
                $new_column = preg_replace('/^'.$old_column_prefix.'/', $new_column_prefix, $old_column);
                $sql[] = "ALTER TABLE ".$database.".".$old_table." RENAME COLUMN ".$old_column." TO ".$new_column."; ";
            }
        }
    }

    $sqlState = implode(' ', $sql);

    $executeStatement = $this->db->exec($sqlState);
    return $executeStatement?$executeStatement:false;
}

任何帮助将不胜感激。

0 个答案:

没有答案