选择语言 :

 Module_OOP_ORM::id_field_name

null Module_OOP_ORM::id_field_name( )
File: ./modules/oop/orm.class.php
public function id_field_name()
{
    if ( false===$this->_id_field )
    {
        # 获取ID字段名
        $tmpdata = $this->create();
        $this->_id_field = $tmpdata->id_field_name();
        unset($tmpdata);
    }
    return $this->_id_field;
}