Exemplo n.º 1
0
 /**
  * 获得值
  *
  * @param string $key
  */
 public function get($key)
 {
     if (is_array($key)) {
         $c = $this->_cacher;
         if ($this->_isGroup) {
             $c = $this->_cacher['local'];
         }
         return $c->getMulti($key);
     }
     return parent::get($key);
 }