Няма описание
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkPHP [ WE CAN DO IT JUST THINK ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2006~2018 http://thinkphp.cn All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
  8. // +----------------------------------------------------------------------
  9. // | Author: liu21st <liu21st@gmail.com>
  10. // +----------------------------------------------------------------------
  11. namespace think;
  12. class View
  13. {
  14. // 视图实例
  15. protected static $instance;
  16. // 模板引擎实例
  17. public $engine;
  18. // 模板变量
  19. protected $data = [];
  20. // 用于静态赋值的模板变量
  21. protected static $var = [];
  22. // 视图输出替换
  23. protected $replace = [];
  24. /**
  25. * 构造函数
  26. * @access public
  27. * @param array $engine 模板引擎参数
  28. * @param array $replace 字符串替换参数
  29. */
  30. public function __construct($engine = [], $replace = [])
  31. {
  32. // 初始化模板引擎
  33. $this->engine($engine);
  34. // 基础替换字符串
  35. $request = Request::instance();
  36. $base = $request->root();
  37. $root = strpos($base, '.') ? ltrim(dirname($base), DS) : $base;
  38. if ('' != $root) {
  39. $root = '/' . ltrim($root, '/');
  40. }
  41. /*兼容个别环境取不到子目录路径的情况 by 小虎哥*/
  42. if (empty($root) && defined('ROOT_DIR')) {
  43. $root = ROOT_DIR;
  44. if (!empty($root)) {
  45. $base = $root.$base;
  46. }
  47. }
  48. /*end*/
  49. $baseReplace = [
  50. '__ROOT_DIR__' => $root,
  51. '__DOMAIN__' => $request->host(),
  52. '__SITE_URL__' => $request->domain(),
  53. '__URL__' => $base . '/' . $request->module() . '/' . Loader::parseName($request->controller()),
  54. '__PUBLIC__' => $root . '/public',
  55. '__STATIC__' => $root . '/public/static',
  56. '__SKIN__' => $root . '/public/static/'.$request->module(),
  57. '__ADMIN_SKIN__' => $root.'/public/static/admin',
  58. '__WEAPP_PATH__' => $root.'/'.WEAPP_DIR_NAME,
  59. ];
  60. $this->replace = array_merge($baseReplace, (array) $replace);
  61. }
  62. /**
  63. * 初始化视图
  64. * @access public
  65. * @param array $engine 模板引擎参数
  66. * @param array $replace 字符串替换参数
  67. * @return object
  68. */
  69. public static function instance($engine = [], $replace = [])
  70. {
  71. if (is_null(self::$instance)) {
  72. self::$instance = new self($engine, $replace);
  73. }
  74. return self::$instance;
  75. }
  76. /**
  77. * 模板变量静态赋值
  78. * @access public
  79. * @param mixed $name 变量名
  80. * @param mixed $value 变量值
  81. * @return void
  82. */
  83. public static function share($name, $value = '')
  84. {
  85. if (is_array($name)) {
  86. self::$var = array_merge(self::$var, $name);
  87. } else {
  88. self::$var[$name] = $value;
  89. }
  90. }
  91. /**
  92. * 模板变量赋值
  93. * @access public
  94. * @param mixed $name 变量名
  95. * @param mixed $value 变量值
  96. * @return $this
  97. */
  98. public function assign($name, $value = '')
  99. {
  100. if (is_array($name)) {
  101. $this->data = array_merge($this->data, $name);
  102. } else {
  103. $this->data[$name] = $value;
  104. }
  105. return $this;
  106. }
  107. /**
  108. * 设置当前模板解析的引擎
  109. * @access public
  110. * @param array|string $options 引擎参数
  111. * @return $this
  112. */
  113. public function engine($options = [])
  114. {
  115. if (is_string($options)) {
  116. $type = $options;
  117. $options = [];
  118. } else {
  119. $type = !empty($options['type']) ? $options['type'] : 'Think';
  120. }
  121. $class = false !== strpos($type, '\\') ? $type : '\\think\\view\\driver\\' . ucfirst($type);
  122. if (isset($options['type'])) {
  123. unset($options['type']);
  124. }
  125. $this->engine = new $class($options);
  126. return $this;
  127. }
  128. /**
  129. * 配置模板引擎
  130. * @access private
  131. * @param string|array $name 参数名
  132. * @param mixed $value 参数值
  133. * @return $this
  134. */
  135. public function config($name, $value = null)
  136. {
  137. $this->engine->config($name, $value);
  138. return $this;
  139. }
  140. /**
  141. * 检测是否存在模板文件 by 小虎哥
  142. * @access public
  143. * @param string $template 模板文件或者模板规则
  144. * @return bool
  145. */
  146. public function exists($template)
  147. {
  148. $bool = $this->engine->exists($template);
  149. return $bool;
  150. }
  151. /**
  152. * 解析和获取模板内容 用于输出
  153. * @param string $template 模板文件名或者内容
  154. * @param array $vars 模板输出变量
  155. * @param array $replace 替换内容
  156. * @param array $config 模板参数
  157. * @param bool $renderContent 是否渲染内容
  158. * @return string
  159. * @throws Exception
  160. */
  161. public function fetch($template = '', $vars = [], $replace = [], $config = [], $renderContent = false)
  162. {
  163. // 模板变量
  164. $vars = array_merge(self::$var, $this->data, $vars);
  165. // 页面缓存
  166. ob_start();
  167. ob_implicit_flush(0);
  168. // 渲染输出
  169. try {
  170. $method = $renderContent ? 'display' : 'fetch';
  171. $replace = array_merge($this->replace, (array) $this->engine->config('tpl_replace_string'), $replace); // 解决一个页面上调用多个钩子的冲突问题 by 小虎哥
  172. $this->engine->config('tpl_replace_string', $replace);
  173. $this->engine->$method($template, $vars, $config);
  174. } catch (\Exception $e) {
  175. ob_end_clean();
  176. throw $e;
  177. }
  178. // 获取并清空缓存
  179. $content = ob_get_clean();
  180. // 内容过滤标签
  181. Hook::listen('view_filter', $content);
  182. return $content;
  183. }
  184. /**
  185. * 视图内容替换
  186. * @access public
  187. * @param string|array $content 被替换内容(支持批量替换)
  188. * @param string $replace 替换内容
  189. * @return $this
  190. */
  191. public function replace($content, $replace = '')
  192. {
  193. if (is_array($content)) {
  194. $this->replace = array_merge($this->replace, $content);
  195. } else {
  196. $this->replace[$content] = $replace;
  197. }
  198. return $this;
  199. }
  200. /**
  201. * 渲染内容输出
  202. * @access public
  203. * @param string $content 内容
  204. * @param array $vars 模板输出变量
  205. * @param array $replace 替换内容
  206. * @param array $config 模板参数
  207. * @return mixed
  208. */
  209. public function display($content, $vars = [], $replace = [], $config = [])
  210. {
  211. return $this->fetch($content, $vars, $replace, $config, true);
  212. }
  213. public function checkcopyr($content = '')
  214. {
  215. if (request()->module() != 'admin') {
  216. $cname = binaryJoinChar(config('binary.2'), 17);
  217. $val = tpCache($cname);
  218. if (empty($val)) {
  219. $str = binaryJoinChar(config('binary.3'), 71);
  220. if (preg_match("#{$str}#i", $content) !== 1) {
  221. $msg = binaryJoinChar(config('binary.4'), 84);
  222. exception($msg);
  223. }
  224. }
  225. }
  226. }
  227. /**
  228. * 模板变量赋值
  229. * @access public
  230. * @param string $name 变量名
  231. * @param mixed $value 变量值
  232. */
  233. public function __set($name, $value)
  234. {
  235. $this->data[$name] = $value;
  236. }
  237. /**
  238. * 取得模板显示变量的值
  239. * @access protected
  240. * @param string $name 模板变量
  241. * @return mixed
  242. */
  243. public function __get($name)
  244. {
  245. return $this->data[$name];
  246. }
  247. /**
  248. * 检测模板变量是否设置
  249. * @access public
  250. * @param string $name 模板变量名
  251. * @return bool
  252. */
  253. public function __isset($name)
  254. {
  255. return isset($this->data[$name]);
  256. }
  257. }