コード例 #1
0
ファイル: cache.php プロジェクト: nooku/nooku-framework
 /**
  * Set an item in the array
  *
  * @param   int     $offset The offset of the item
  * @param   mixed   $value  The item's value
  * @return  object  ObjectArray
  */
 public function offsetSet($offset, $value)
 {
     apc_store($this->getNamespace() . '-class_' . $offset, $value);
     parent::offsetSet($offset, $value);
 }
コード例 #2
0
ファイル: cache.php プロジェクト: janssit/nickys.janss.be
 /**
  * Set an item in the array
  *
  * @param   int     $offset The offset of the item
  * @param   mixed   $value  The item's value
  * @return  object  ObjectArray
  */
 public function offsetSet($offset, $value)
 {
     apc_store($this->_namespace . '-' . $offset, $value);
     parent::offsetSet($offset, $value);
 }