core.write_cache_file.php
上传用户:xjjlds
上传日期:2015-12-05
资源大小:22823k
文件大小:4k
源码类别:

多媒体编程

开发平台:

Visual C++

  1. <?php
  2. /**
  3.  * Smarty plugin
  4.  * @package Smarty
  5.  * @subpackage plugins
  6.  */
  7. /**
  8.  * Prepend the cache information to the cache file
  9.  * and write it
  10.  *
  11.  * @param string $tpl_file
  12.  * @param string $cache_id
  13.  * @param string $compile_id
  14.  * @param string $results
  15.  * @return true|null
  16.  */
  17.  // $tpl_file, $cache_id, $compile_id, $results
  18. function smarty_core_write_cache_file($params, &$smarty)
  19. {
  20.     // put timestamp in cache header
  21.     $smarty->_cache_info['timestamp'] = time();
  22.     if ($smarty->cache_lifetime > -1){
  23.         // expiration set
  24.         $smarty->_cache_info['expires'] = $smarty->_cache_info['timestamp'] + $smarty->cache_lifetime;
  25.     } else {
  26.         // cache will never expire
  27.         $smarty->_cache_info['expires'] = -1;
  28.     }
  29.     // collapse nocache.../nocache-tags
  30.     if (preg_match_all('!{(/?)nocache:[0-9a-f]{32}#d+}!', $params['results'], $match, PREG_PATTERN_ORDER)) {
  31.         // remove everything between every pair of outermost noache.../nocache-tags
  32.         // and replace it by a single nocache-tag
  33.         // this new nocache-tag will be replaced by dynamic contents in
  34.         // smarty_core_process_compiled_includes() on a cache-read
  35.         
  36.         $match_count = count($match[0]);
  37.         $results = preg_split('!({/?nocache:[0-9a-f]{32}#d+})!', $params['results'], -1, PREG_SPLIT_DELIM_CAPTURE);
  38.         
  39.         $level = 0;
  40.         $j = 0;
  41.         for ($i=0, $results_count = count($results); $i < $results_count && $j < $match_count; $i++) {
  42.             if ($results[$i] == $match[0][$j]) {
  43.                 // nocache tag
  44.                 if ($match[1][$j]) { // closing tag
  45.                     $level--;
  46.                     unset($results[$i]);
  47.                 } else { // opening tag
  48.                     if ($level++ > 0) unset($results[$i]);
  49.                 }
  50.                 $j++;
  51.             } elseif ($level > 0) {
  52.                 unset($results[$i]);
  53.             }
  54.         }
  55.         $params['results'] = implode('', $results);
  56.     }
  57.     $smarty->_cache_info['cache_serials'] = $smarty->_cache_serials;
  58.     // prepend the cache header info into cache file
  59.     $params['results'] = serialize($smarty->_cache_info)."n".$params['results'];
  60.     if (!empty($smarty->cache_handler_func)) {
  61.         // use cache_handler function
  62.         call_user_func_array($smarty->cache_handler_func,
  63.                              array('write', &$smarty, &$params['results'], $params['tpl_file'], $params['cache_id'], $params['compile_id'], null));
  64.     } else {
  65.         // use local cache file
  66.         if(!@is_writable($smarty->cache_dir)) {
  67.             // cache_dir not writable, see if it exists
  68.             if(!@is_dir($smarty->cache_dir)) {
  69.                 $smarty->trigger_error('the $cache_dir '' . $smarty->cache_dir . '' does not exist, or is not a directory.', E_USER_ERROR);
  70.                 return false;
  71.             }
  72.             $smarty->trigger_error('unable to write to $cache_dir '' . realpath($smarty->cache_dir) . ''. Be sure $cache_dir is writable by the web server user.', E_USER_ERROR);
  73.             return false;
  74.         }
  75.         $_auto_id = $smarty->_get_auto_id($params['cache_id'], $params['compile_id']);
  76.         $_cache_file = $smarty->_get_auto_filename($smarty->cache_dir, $params['tpl_file'], $_auto_id);
  77.         $_params = array('filename' => $_cache_file, 'contents' => $params['results'], 'create_dirs' => true);
  78.         require_once(SMARTY_CORE_DIR . 'core.write_file.php');
  79.         smarty_core_write_file($_params, $smarty);
  80.         return true;
  81.     }
  82. }
  83. /* vim: set expandtab: */
  84. ?>