当前位置: 首页>>代码示例>>PHP>>正文


PHP Memcached_DataObject::update方法代码示例

本文整理汇总了PHP中Memcached_DataObject::update方法的典型用法代码示例。如果您正苦于以下问题:PHP Memcached_DataObject::update方法的具体用法?PHP Memcached_DataObject::update怎么用?PHP Memcached_DataObject::update使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Memcached_DataObject的用法示例。


在下文中一共展示了Memcached_DataObject::update方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: update

 /**
  * Update wrapper; transparently update modified column.
  * @return boolean success
  */
 function update($old = null)
 {
     $this->modified = common_sql_now();
     return parent::update($old);
 }
开发者ID:Br3nda,项目名称:StatusNet,代码行数:9,代码来源:HubSub.php

示例2: update

 /**
  * Flush cached subscriptions when subscription is updated
  *
  * Because we cache subscriptions, it's useful to flush them
  * here.
  *
  * @param mixed $orig Original version of object
  *
  * @return boolean success flag.
  */
 function update($orig = null)
 {
     $result = parent::update($orig);
     self::blow('subscription:by-subscriber:' . $this->subscriber);
     self::blow('subscription:by-subscribed:' . $this->subscribed);
     return $result;
 }
开发者ID:harriewang,项目名称:InnertieWebsite,代码行数:17,代码来源:Subscription.php

示例3: update

 function update($orig = null)
 {
     $result = parent::update($orig);
     if ($result) {
         Config::_blowSettingsCache();
     }
     return $result;
 }
开发者ID:himmelex,项目名称:NTW,代码行数:8,代码来源:Config.php

示例4: update

 /**
  * Update a people tag gracefully
  * also change "tag" fields in profile_tag table
  *
  * @param Profile_list $orig    Object's original form
  *
  * @return boolean success
  */
 function update($orig = null)
 {
     $result = true;
     if (!is_object($orig) && !$orig instanceof Profile_list) {
         parent::update($orig);
     }
     // if original tag was different
     // check to see if the new tag already exists
     // if not, rename the tag correctly
     if ($orig->tag != $this->tag || $orig->tagger != $this->tagger) {
         $existing = Profile_list::getByTaggerAndTag($this->tagger, $this->tag);
         if (!empty($existing)) {
             // TRANS: Server exception.
             throw new ServerException(_('The tag you are trying to rename ' . 'to already exists.'));
         }
         // move the tag
         // XXX: allow OStatus plugin to send out profile tag
         $result = Profile_tag::moveTag($orig, $this);
     }
     parent::update($orig);
     return $result;
 }
开发者ID:harriewang,项目名称:InnertieWebsite,代码行数:30,代码来源:Profile_list.php


注:本文中的Memcached_DataObject::update方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。