


Simple method to use PHP Smarty template, phpsmarty template_PHP tutorial
Jul 12, 2016 am 08:55 AMA 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

Hot Article

Hot tools Tags

Hot Article

Hot Article Tags

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian

How To Set Up Visual Studio Code (VS Code) for PHP Development
