What is Smarty?
Why use it?
Use Cases and Work Flow
Syntax Comparison
Template Inheritance
Best Practices
Crash Course
You may use the Smarty logo according to the trademark notice.
For sponsorship, advertising, news or other inquiries, contact us at:
设置Smarty将如何处理嵌入到模板中的PHP代码。
这里有四个选项,默认是Smarty::PHP_PASSTHRU
。
注意该设置不会影响到模板中使用
{php}{/php}
标签嵌入的PHP代码。
Smarty::PHP_PASSTHRU
- 原样输出这些代码。
Smarty::PHP_QUOTE
- 把这些代码转换成HTML实体显示。
Smarty::PHP_REMOVE
- 清除这些代码。
Smarty::PHP_ALLOW
- 作为PHP代码来执行。