if else 表达式

格式: {if 表达式/变量}满足条件内容{else}满足条件内容{/if}


范例:

判断是否是登录状态,如果是就提示登录了,如果没有提示请先登录

{if $user['uid']}

您好,{$user['username']}

{else}

请先登录

{/if}