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


PHP Repository::put方法代码示例

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


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

示例1: loadSource

 /**
  *  Load the messages for the given locale.
  *
  *  @param  string  $locale
  *  @param  string  $group
  *  @param  string  $namespace
  *  @return array
  */
 public function loadSource($locale, $group, $namespace = '*')
 {
     if ($this->cache->has($locale, $group, $namespace)) {
         return $this->cache->get($locale, $group, $namespace);
     } else {
         $source = $this->fallback->load($locale, $group, $namespace);
         $this->cache->put($locale, $group, $namespace, $source, $this->cacheTimeout);
         return $source;
     }
 }
开发者ID:MarkRedeman,项目名称:translation,代码行数:18,代码来源:CacheLoader.php

示例2: store

 /**
  * Cache the passed response
  *
  * @param  \Illuminate\Routing\Route                    $route
  * @param  \Illuminate\Http\Request                     $request
  * @param  \Symfony\Component\HttpFoundation\Response   $response
  *
  * @return void
  */
 public function store(Route $route, Request $request, Response $response)
 {
     if ($ttl = $this->ttl) {
         $key = $this->makeCacheKey($request);
         if (!$this->cache->has($key)) {
             $cacheable = $this->serializeResponse($response);
             $this->cache->put($key, $cacheable, $ttl);
         }
     }
 }
开发者ID:mintbridge,项目名称:laravel-cache-filter,代码行数:19,代码来源:ResponseCacheFilter.php

示例3: setCacheLocale

 /**
  * Sets a cache key to the specified locale.
  *
  * @param Model $locale
  */
 protected function setCacheLocale(Model $locale)
 {
     if (!$this->cache->has($locale->code)) {
         $id = sprintf('translation.%s', $locale->code);
         $this->cache->put($id, $locale, $this->cacheTime);
     }
 }
开发者ID:mohamedsharaf,项目名称:translation-1,代码行数:12,代码来源:Translation.php

示例4: saveRemoteFileToCache

 /**
  * Save a remote file to cache
  *
  * @param  string  $url
  * @param  array   $options
  * @return string
  */
 public function saveRemoteFileToCache($url, $options = array())
 {
     $url = explode('/', $url);
     $folder = '/app/storage/tmp/' . implode(array_slice($url, 0, -1));
     $file = end($url);
     $url = implode('/', $url);
     $tmp = $folder . '/' . $file;
     $this->local->put($tmp, '');
     $tmp = base_path() . $tmp;
     // $tmp needs to be absolute from here on
     $ch = curl_init($url);
     $fp = fopen($tmp, 'wb');
     curl_setopt($ch, CURLOPT_FILE, $fp);
     curl_setopt($ch, CURLOPT_HEADER, 0);
     curl_exec($ch);
     curl_close($ch);
     fclose($fp);
     return $this->saveFileToCache($tmp, '/' . $url, $options);
 }
开发者ID:abulo,项目名称:laravel-image,代码行数:26,代码来源:Image.php


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