zend framework获取数据库中枚举类enum的数据并将其转换成数组

在model中建立这样的模型,在其中写入获取枚举类的方法


class Student extends Zend_Db_Table{
    protected $_name =‘student‘;
    protected $_primary =‘id‘; 

    function getPartyEnum($enumname){

        //适配器并获取数据
        $db = $this->getAdapter();   
        $db->query("SET NAMES GBK"); 
        $sql = $db->quoteInto(‘SHOW COLUMNS FROM student LIKE ?‘,$enumname); 
        $res = $db->query($sql)->fetchAll();
        //对得到的枚举类进行处理
        //得到枚举类字符串
        $enum = $res [0] [‘Type‘];
        //以前面的(分成两个数组
        $enum_arr = explode ( "(",$enum );
        //将第二个数组赋给变量,其实第一个为空数组
        $enum = $enum_arr [1];
        //以后面的(分成两个数组
        $enum_arr = explode ( ")",$enum );
        //将第一个数组赋给变量,其实第二个为空数组
        $enum = $enum_arr [0];
        //以逗号为分界点将得到的字符串分界成N个数组
        $enum_arr = explode(‘,‘,$enum);
        //将每个元素的单引号变成空
        for($i=0;$i<count($enum_arr);$i++){
            $enum_arr[$i] = str_replace("‘","",$enum_arr[$i]);
            
        }    
        return $enum_arr;

    }  

}

zend framework获取数据库中枚举类enum的数据并将其转换成数组,布布扣,bubuko.com

zend framework获取数据库中枚举类enum的数据并将其转换成数组

上一篇:蓝头网络 - lantCMS系统怀念ACCESS版


下一篇:ansible通过cmdb资产接口动态创建hosts列表