Heim >Backend-Entwicklung >PHP-Tutorial >Smarty模板引擎的使用

Smarty模板引擎的使用

WBOY
WBOYOriginal
2016-07-29 09:05:491091Durchsuche

一、为什么使用Smarty?

  1. PHP代码与HTML代码混合在一起,很混乱。Smarty将表现层(前端)和逻辑层(后端)分开。
  2. 利用smarty缓存技术,有效提高访问速度。

二、Smarty的原理&使用

原理可以用一张图来表示
Smarty模板引擎的使用

使用方法
1:在index.php中引入smarty的入口文件:Smarty.class.php
2:实例化一个smarty类;
3:通过对象配置smarty的编译目录、模板目录,缓存目录等等。
4:可将配置文件专门放在一个文件里。
代码

index.php文件

<code><span><span><?php </span><span>//引入配置文件</span><span>require</span><span>'smarty/smarty.inc.php'</span>;
   <span>//注册变量</span><span>$name</span>=<span>"eric1122"</span>;
   <span>$smarty</span>->assign(<span>"name"</span>,<span>$name</span>);
   <span>//引入模板</span><span>$smarty</span>->display(<span>"index.tpl"</span>); 
<span>?></span></span></span></code>

smarty.inc.php文件

<code><span></span>php
   <span>/**
    * smarty 配置文件
    */</span><span>//创建一个实际路径,加快速度</span><span><span>define</span></span>(<span>"ROOT_PATH"</span>,dirname(__FILE__));
   <span>//引入smarty入口文件</span><span>require</span>(ROOT_PATH<span>.</span><span>"/Smarty.class.php"</span>);
   <span>//实例化一个smarty</span><span>$smarty</span><span>=</span><span>new</span> Smarty();
   <span>//配置文件</span><span>//模板目录</span><span>$smarty</span><span>-></span>template_dir<span>=</span>ROOT_PATH<span>.</span><span>"/templates"</span>;
   <span>//缓存目录</span><span>$smarty</span><span>-></span>cache_dir<span>=</span>ROOT_PATH<span>.</span><span>"/cache"</span>;
   <span>//配置目录</span><span>$smarty</span><span>-></span>config_dir<span>=</span>ROOT_PATH<span>.</span><span>"/configs"</span>;
   <span>//配置编译目录</span><span>$smarty</span><span>-></span>compile_dir<span>=</span>ROOT_PATH<span>.</span><span>"/compile"</span>;   
<span>?></span></code>
').addClass('pre-numbering').hide(); $(this).addClass('has-numbering').parent().append($numbering); for (i = 1; i ').text(i)); }; $numbering.fadeIn(1700); }); });

以上就介绍了Smarty模板引擎的使用,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Vorheriger Artikel:Centos65采用LANMP搭建生产环境Nächster Artikel:NGinx负载均衡策略