标题 | PHP Smarty模版简单使用方法 |
内容 | 本文实例讲述了PHP Smarty模版简单使用方法。分享给大家供大家参考,具体如下: Index.php: require('../libs/Smarty.class.php'); $smarty = new Smarty; // 添加自定义调节器 $smarty->registerPlugin("modifier", "e", "htmlspecialchars"); $smarty->registerPlugin("modifier", "trim", "trim"); //$smarty->force_compile = true; $smarty->debugging = true; $smarty->caching = true; $smarty->cache_lifetime = 120; //定义标识符 $smarty->left_delimiter = '{ '; $smarty->right_delimiter = ' }'; //绑定变量 $smarty->assign("test_html", "<a>haha</a>"); $smarty->display('index.tpl'); index.tpl: <h1>{ $test_html|e }</h1> 后记:如何让VS支持tpl扩展名的HTML编辑 在菜单[工具>选项]中设置,如下图: ![]() 希望本文所述对大家PHP程序设计有所帮助。 |
随便看 |
|
在线学习网考试资料包含高考、自考、专升本考试、人事考试、公务员考试、大学生村官考试、特岗教师招聘考试、事业单位招聘考试、企业人才招聘、银行招聘、教师招聘、农村信用社招聘、各类资格证书考试等各类考试资料。