maybe_create_table()

maybe_create_table( string $table_name, string $create_…

maybe_create_table( string $table_name, string $create_ddl )

在数据库中创建一个表(如果该表不存在)。
Creates a table in the database if it doesn’t already exist.

目录锚点:#说明#参数#返回#源码#笔记


说明(Description)

此方法检查现有数据库,如果该数据库不存在,则创建一个新数据库。它不依赖MySQL的“IF NOT EXISTS”语句,而是选择先查询所有表,然后运行创建表的SQL语句。


参数(Parameters)

参数 类型 必填 说明
$table_name (string) 必需 要创建的数据库表名。
$create_ddl (string) 必需 创建表的SQL语句。

返回(Return)

(bool)如果表已经存在或是由函数创建的。


源码(Source)


更新版本 源码位置 使用 被使用
1.0.0 wp-admin/includes/upgrade.php:2328 0 5

笔记(Notes)

在调用此函数之前,必须手动包括’升级.php’否则你将以死亡的白屏结束。

类别:WordPress 函数手册

本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。

评论 (0)COMMENT

登录 账号发表你的看法,还没有账号?立即免费 注册