选择语言 :

 Module_OOP_ORM_Data::_remove_id_cache_data

清除ID数据缓存

$this Module_OOP_ORM_Data::_remove_id_cache_data( )
返回值
  • $this
File: ./modules/oop/orm/data.class.php
protected function _remove_id_cache_data()
{
    if (IS_CLI)return $this;

    $id_field_name = $this->id_field_name();
    $id = $this->$id_field_name;

    if ( $id && isset(OOP_ORM_Data::$_id_field_cache_data[$this->_class_name][$id]) )
    {
        unset(OOP_ORM_Data::$_id_field_cache_data[$this->_class_name][$id]);
        OOP_ORM_Data::$_id_field_cache_data_num -= 1;
    }

    return $this;
}