gpt4 book ai didi

php - 如何获取 MySQL 数据库中的枚举可能值?

转载 作者:行者123 更新时间:2023-11-29 16:02:38 25 4
gpt4 key购买 nike

我想自动使用数据库中的枚举可能值填充我的下拉列表。这在 MySQL 中可能吗?

最佳答案

我有一个 codeigniter 版本给你。它还从值中删除引号。

function get_enum_values( $table, $field )
{
$type = $this->db->query( "SHOW COLUMNS FROM {$table} WHERE Field = '{$field}'" )->row( 0 )->Type;
preg_match("/^enum\(\'(.*)\'\)$/", $type, $matches);
$enum = explode("','", $matches[1]);
return $enum;
}

关于php - 如何获取 MySQL 数据库中的枚举可能值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56047409/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com