选择语言 :

 Module_OOP_ORM_Data::_get_offset_config

获取指定key的配置

array/null Module_OOP_ORM_Data::_get_offset_config( string $index )

参数列表

参数 类型 描述 默认值
$index string $index
返回值
  • array/null
File: ./modules/oop/orm/data.class.php
protected function _get_offset_config($index)
{

    if ( isset(OOP_ORM_Data::$_offset_setting[$this->_class_name][$index]) )
    {
        return OOP_ORM_Data::$_offset_setting[$this->_class_name][$index];
    }
    else
    {
        return null;
    }
}