WordPress 功能函数—— add_clean_index(向指定的表添加索引)

描述

向指定的表添加索引。

用法

add_clean_index( string $table, string $index )

参数

$table

(string)(必填)数据库表的名称。

$index

(string)(必填)数据库表索引列。

返回

(true) 真,当执行完成时。

来源

文件:wp-admin/includes/upgrade.php

function add_clean_index( $table, $index ) {
    global $wpdb;
    drop_index( $table, $index );
    $wpdb->query( "ALTER TABLE `$table` ADD INDEX ( `$index` )" );
    return true;
}
本文原创,作者:萨龙龙,其版权均为萨龙网络所有。
如需转载,请注明出处:https://salongweb.com/wordpress-functions-add-clean-index.html