Prado\I18N\core\TCache_Lite::getMemoryCachingState PHP 메소드

getMemoryCachingState() 공개 메소드

public getMemoryCachingState ( $id, $group = 'default', $doNotTestCacheValidity = false )
    function getMemoryCachingState($id, $group = 'default', $doNotTestCacheValidity = false)
    {
        if ($this->_caching) {
            if ($data = $this->get($id, $group, $doNotTestCacheValidity)) {
                $array = unserialize($data);
                $this->_memoryCachingCounter = $array['counter'];
                $this->_memoryCachingArray = $array['array'];
            }
        }
    }