コード例 #1
0
ファイル: Mcached.php プロジェクト: horde/horde
 /**
  * Get the specified attribute of this object.
  *
  * @param string $attr The attribute to read.
  *
  * @return mixed The value of this attribute.
  */
 public function getExternal($attr)
 {
     if (!isset($this->_cache_ext[$attr])) {
         $this->_cache_ext[$attr] = $this->_object->getExternal($attr);
     }
     return $this->_cache_ext[$attr];
 }
コード例 #2
0
ファイル: Hash.php プロジェクト: horde/horde
 /**
  * Get the specified attribute of this object.
  *
  * @param string $attr The attribute to read.
  *
  * @return mixed The value of this attribute.
  */
 public function getExternal($attr)
 {
     return $this->_object->getExternal($attr);
 }