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


PHP false::set方法代码示例

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


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

示例1: set

 /**
  * Sends a key => value pair to the cache.
  *
  * <code>
  * // This code will add four entries to the cache, one for each url.
  * $cache->set('main', 'http://moodle.org');
  * $cache->set('docs', 'http://docs.moodle.org');
  * $cache->set('tracker', 'http://tracker.moodle.org');
  * $cache->set('qa', 'http://qa.moodle.net');
  * </code>
  *
  * @param string|int $key The key for the data being requested.
  *      It can be any structure although using a scalar string or int is recommended in the interests of performance.
  *      In advanced cases an array may be useful such as in situations requiring the multi-key functionality.
  * @param mixed $data The data to set against the key.
  * @return bool True on success, false otherwise.
  */
 public function set($key, $data)
 {
     if ($this->perfdebug) {
         cache_helper::record_cache_set($this->storetype, $this->definition->get_id());
     }
     if ($this->loader !== false) {
         // We have a loader available set it there as well.
         // We have to let the loader do its own parsing of data as it may be unique.
         $this->loader->set($key, $data);
     }
     if (is_object($data) && $data instanceof cacheable_object) {
         $data = new cache_cached_object($data);
     } else {
         if (!is_scalar($data)) {
             // If data is an object it will be a reference.
             // If data is an array if may contain references.
             // We want to break references so that the cache cannot be modified outside of itself.
             // Call the function to unreference it (in the best way possible).
             $data = $this->unref($data);
         }
     }
     if ($this->has_a_ttl() && !$this->store_supports_native_ttl()) {
         $data = new cache_ttl_wrapper($data, $this->definition->get_ttl());
     }
     $parsedkey = $this->parse_key($key);
     if ($this->is_using_persist_cache()) {
         $this->set_in_persist_cache($parsedkey, $data);
     }
     return $this->store->set($parsedkey, $data);
 }
开发者ID:masaterutakeno,项目名称:MoodleMobile,代码行数:47,代码来源:loaders.php


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