日期:2014-05-17  浏览次数:20564 次

【分享】DolrPHP模板引擎DolrViews分享
核心文件:DolrViews.class.php:
  1. <?php
  2. /**
  3. * DolrPHP模板引擎
  4. * @author Joychao <joy@joychao.cc>
  5. * @version 1.0 beta
  6. * @license http://www.Joychao.cc
  7. */
  8. defined('DOLRVIEWS') or define('DOLRVIEWS',true);
  9. defined('DIR_SEP') or define('DIR_SEP',DIRECTORY_SEPARATOR);
  10. class DolrViews
  11. {
  12. /**
  13. * 单例对象
  14. *
  15. * @static var
  16. * @var object DolrViews
  17. */
  18. protected static $_instance;
  19. /**
  20. * 模板变量
  21. *
  22. * @var array
  23. */
  24. protected $_tpl_vars=array();
  25. /**
  26. * 模板参数信息
  27. *
  28. * @var array
  29. */
  30. protected $_options=array(
  31. 'template_dir'=>'templates',
  32. 'compile_dir'=>'templates_c',
  33. 'cache_dir'=>'cache',
  34. 'caching'=>false,
  35. 'cache_lifetime'=>3600,
  36. 'plugins_dir'=>'plugins',
  37. 'tpl_suffix'=>'html',
  38. 'php_handing'=>false,
  39. );
  40. /**
  41. * 包含的插件
  42. * @var array
  43. */
  44. protected $includePlugins=array();
  45. /**
  46. * 主模板非包含模板
  47. * @var string
  48. */
  49. protected $mainTplFileName;
  50. /**
  51. * 单件模式调用方法
  52. *
  53. * @static
  54. * @return object DolrViews
  55. */
  56. public static function getInstance($options=array()) {
  57. if (!self :: $_instance instanceof self)
  58. self :: $_instance = new self($options);
  59. return self :: $_instance;
  60. }
  61. /**
  62. * 构造函数,初始化所有配置
  63. *
  64. * @param array $config=array(); 配置数组
  65. * @example:
  66. * $_options=array(
  67. * 'template_dir'=>'templates',
  68. * 'compile_dir'=>'templates_c',
  69. * 'cache_dir'=>'cache',
  70. * 'caching'=>false,
  71. * 'cache_lifetime'=>3600,
  72. * 'plugins_dir'=>'plugins',
  73. * 'php_handing'=>false,
  74. * );
  75. * $tpl=new DolrViews($_options);
  76. */
  77. public function __construct($options=array())
  78. {
  79. if (!empty($options))
  80. {
  81. $this->setOptions($options);
  82. }
  83. }
  84. /**
  85. * 分配变量到模板
  86. *
  87. * @param string $varName 变量名
  88. * @param mixed $varValue 变量值
  89. */
  90. public function assign($varName,$varValue)
  91. {
  92. $this->_tpl_vars[$varName]=&$varValue;
  93. }
  94. /**
  95. * 显示输出到页面
  96. *
  97. * @param string $tplFileName 模板文件名
  98. */
  99. public function display($tplFileName,$cacheId=null)
  100. {
  101. $cacheId=is_null($cacheId)?$_SERVER['REQUEST_URI']:$cacheId;
  102. $this->mainTplFileName=$tplFileName;
  103. $tplFilePath=$this->_getTplPath($tplFileName);
  104. extract($this->_tpl_vars);
  105. //内置变量
  106. extract($this->_getSystemVars($tplFileName));//系统变量
  107. //是否缓存
  108. if($this->_options['caching']){
  109. if($this->isCached($tplFileName,$cacheId)){
  110. include $this->_getCacheFile($tplFileName,$cacheId);
  111. }else{//否则缓存文件
  112. include $this->_writeCache($tplFileName,$this->_parseTpl($tplFileName,$cacheId),$cacheId);// 写入缓存
  113. }
  114. }else{//非缓存模式
  115. include $this->_parseTpl($tplFileName,$cacheId);//解析写入编译文件并包含
  116. }
  117. }
  118. /**
  119. * 配置模板选项
  120. *
  121. * @param array $options 配置数组
  122. */
  123. public function setOptions($options)
  124. {
  125. foreach ($options as $optionName => $optionValue) {
  126. $this->set($optionName,$optionValue);
  127. }
  128. }
  129. /**
  130. * 设置选项
  131. *
  132. * @param string $optionName 选项名称
  133. * @param mixed $optionValue 选项值
  134. */
  135. public function __set($optionName,$optionValue)
  136. {
  137. $this->set($optionName,$optionValue);