如何在cakephp 2中获取字段的枚举值

时间:2011-12-11 17:17:13

标签: php cakephp cakephp-2.0

如何在cakephp 2中获取字段的枚举值

在1.3中我可以轻松地使用_schema array

1 个答案:

答案 0 :(得分:5)

// get column type
$type = $this->Model->getColumnType('field');

// extract values in single quotes separated by comma
preg_match_all("/'(.*?)'/", $type, $enums);

// enums
var_dump($enums[1]);