获取指定key的配置
array/null Module_OOP_ORM_Data::_get_offset_config( string $index )
参数列表
参数 类型 描述 默认值 $index
string
$index
array/null
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;
}
}