Home  >  Article  >  Backend Development  >  Simple method to use PHP Smarty template, phpsmarty template_PHP tutorial

Simple method to use PHP Smarty template, phpsmarty template_PHP tutorial

WBOY
WBOYOriginal
2016-07-12 08:55:19741browse

A simple way to use the PHP Smarty template, phpsmarty template

The example in this article describes the simple way to use the PHP Smarty template. Share it with everyone for your reference, the details are as follows:

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>

Postscript: How to make VS support HTML editing with tpl extension

Set in the menu [Tools>Options], as shown below:

Readers who are interested in more PHP-related content can check out the special topics of this site: "Summary of PHP Network Programming Skills", "Introduction Tutorial on PHP Basic Grammar", "Summary of PHP Office Document Skills (including word, excel, access, ppt)", "php date and time usage summary", "php object-oriented programming introductory tutorial", "php string (string) usage summary", "php mysql database operation introductory tutorial" and "php common database operation skills summary" 》

I hope this article will be helpful to everyone in PHP programming.

Articles you may be interested in:

  • How to implement multi-template websites using smarty in php
  • php smarty secondary classification code and template loop examples
  • php smarty secondary classification code and template loop examples
  • Variable operators and usage methods in php smarty template engine
  • Cache application in php smarty template engine
  • php smarty template Caching applications in the engine

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/1117058.htmlTechArticleA simple way to use the PHP Smarty template. The phpsmarty template text example tells a simple way to use the PHP Smarty template. Share it with everyone for your reference, the details are as follows: Index.php: require...
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn