CI_Cache::get PHP Méthode

get() public méthode

Look for a value in the cache. If it exists, return the data if not, return FALSE
public get ( string $id ) : mixed
$id string
Résultat mixed value matching $id or FALSE on failure
    public function get($id)
    {
        return $this->{$this->_adapter}->get($this->key_prefix . $id);
    }