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:
{nocache}
用于关闭模板区块的缓存。
{nocache}
都必须和一个{/nocache}
匹配。
请确认任何一个在不缓存区域内的变量,都可以在缓存时从PHP获取到值。
Example 7.60. 阻止模板区域缓存
Today's date is {nocache} {$smarty.now|date_format} {/nocache}
上面的代码将在缓存的页面中输出当前时间。
参见 缓存.