gpt4 book ai didi

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

转载 作者:IT老高 更新时间:2023-10-28 11:53:28 24 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/2350052/

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