當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。