當前位置: 首頁>>代碼示例>>PHP>>正文


PHP File::get方法代碼示例

本文整理匯總了PHP中Thin\File::get方法的典型用法代碼示例。如果您正苦於以下問題:PHP File::get方法的具體用法?PHP File::get怎麽用?PHP File::get使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Thin\File的用法示例。


在下文中一共展示了File::get方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: get

 /**
  * Get the contents of a file.
  *
  * @param  string  $path
  * @return string
  *
  * @throws Exception
  */
 public function get($path)
 {
     if ($this->isFile($path)) {
         return File::get($path);
     }
     throw new Exception("File does not exist at path {$path}");
 }
開發者ID:schpill,項目名稱:thin,代碼行數:15,代碼來源:Filesystem.php

示例2: cached

 private function cached($key, $value = null)
 {
     if (false === $this->cache) {
         return null;
     }
     $settings = isAke(self::$configs, $this->entity);
     $event = isAke($settings, 'cache');
     if (!empty($event)) {
         return $this->{$event}($key, $value);
     }
     $file = STORAGE_PATH . DS . 'cache' . DS . $key . '.eav';
     if (empty($value)) {
         if (File::exists($file)) {
             $age = filemtime($file);
             $maxAge = time() - $this->ttl;
             if ($maxAge < $age) {
                 return json_decode(File::get($file), true);
             } else {
                 File::delete($file);
                 return null;
             }
         }
     } else {
         if (File::exists($file)) {
             File::delete($file);
         }
         File::put($file, json_encode($value));
         return true;
     }
 }
開發者ID:noikiy,項目名稱:inovi,代碼行數:30,代碼來源:Dbeav.php

示例3: cache

 public static function cache($type, $key, $data = null)
 {
     $settings = Arrays::exists($type, static::$_settings) ? static::$_settings[$type] : static::defaultConfig($type);
     $hook = Arrays::exists('cache', $settings) ? $settings['cache'] : null;
     static::_hook($hook, func_get_args(), 'before');
     $dir = static::checkDir($type);
     $file = STORAGE_PATH . DS . 'data' . DS . $dir . DS . $key . '.cache';
     if (File::exists($file)) {
         static::_hook($hook, func_get_args(), 'after');
         return static::unserialize(gzuncompress(File::get($file)));
     }
     if (null !== $data) {
         File::put($file, gzcompress(static::serialize($data), -1));
         static::_hook($hook, func_get_args(), 'after');
         return true;
     }
     static::_hook($hook, func_get_args(), 'after');
     return null;
 }
開發者ID:schpill,項目名稱:thin,代碼行數:19,代碼來源:Data.php


注:本文中的Thin\File::get方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。