函数原型
make_db_current_silent( string $tables = ‘all’ )
函数描述
Updates the database tables to a new schema, but without displaying results.
是否弃用
未弃用
函数参数
-
$tables
string
Optional - Which set of tables to update. Default is
'all'.Default:
'all'
函数返回值
无
函数位置
File: wp-admin/includes/upgrade.php.
函数源码
function make_db_current_silent( $tables = 'all' ) {
dbDelta( $tables );
}
源码链接
变更日志
| Version | Description |
|---|---|
| 1.5.0 | Introduced. |

