选择语言 :

 Module_OOP_ORM_Data::_get_offset_name_by_field

根据字段名获取所有offset键名

array Module_OOP_ORM_Data::_get_offset_name_by_field( string $field_name )

参数列表

参数 类型 描述 默认值
$field_name string $field_name
返回值
  • array
File: ./modules/oop/orm/data.class.php
protected function _get_offset_name_by_field($field_name)
{
    return (array)OOP_ORM_Data::$_field_to_offset[$this->_class_name][$field_name];
}