选择语言 :

 Module_OOP_ORM_Data::__get

null Module_OOP_ORM_Data::__get( )
File: ./modules/oop/orm/data.class.php
public function & __get($key)
{
    if ( !isset($this->_created_offset[$key]) )
    {
        # 构造数据
        $this->_create_data($key);
    }

    return $this->_offset_data[$key];
}