当前位置:   article > 正文

smarty---smarty的第一个示例

smarty smart第一个

简单的输出

  1. <?php
  2. //引进smarty的类文件
  3. require_once "../../libs/Smarty.class.php";//引入类文件
  4. $smarty = new Smarty();//创建对象
  5. $smarty->template_dir = '../templates/';//配置模板目录
  6. $smarty->compile_dir = '../templates_c/';//配置编译目录
  7. $smarty->config_dir = '../configs/';//配置配置文件目录
  8. $smarty->cache_dir = '../cache/';//配置缓存目录
  9. $smarty->debugging = true;//启用smarty的dedug的调试true使用,false不启用
  10. $smarty->assign('name','zhangdapeng');//传递参数
  11. $smarty->display('index.pl');//要显示的文件
  12. ?>

index.pl文件的内容,放在 templates这个目录下的

  1. {* Smarty注释 *}
  2. Hello {$name}, Welcome to Smarty!

 

 

 

转载于:https://my.oschina.net/zhangdapeng89/blog/39788

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/繁依Fanyi0/article/detail/211768
推荐阅读
相关标签
  

闽ICP备14008679号