Tips & Tricks

PHP Smarty

Smarty - the compiling PHP template engine
Prev 来源:PHP中文社区 Next

Chapter 18. Tips & Tricks

第18章。使用技巧和经验

Table of Contents
[内容列表]
Blank Variable Handling[空白变量处理]
Default Variable Handling[默认变量处理]
Passing variable title to header template[把变量型标题传递到头模板]
Dates[日期]
WAP/WML[WAP/WML]
Componentized Templates[组合的模板]
Obfuscating E-mail Addresses[拒绝电子邮件地址]

Blank Variable Handling

空白变量处理

 

{* the long way *}

{if $title eq ""}
	 
{else}
	{$title}
{/if}


{* the short way *}

{$title|default:" "}

Prev 来源:PHP中文社区 Home Next
Up