'IF/ELSEIF/ELSE'에 해당되는 글 1

  1. 2009.12.23 Smarty IF/ELSEIF/ELSE
프로그래밍.../Smarty | Posted by 고기킬러 2009. 12. 23. 10:10

Smarty IF/ELSEIF/ELSE

IF/ELSEIF/ELSE
--------------

아래 에제는 매우 직접적인 문법을 보여주고 있을 뿐이랍니다. 메뉴얼에서 좀 더 자세하
게 이 문법에 대해 설명해 주니까 좀 더 알고 싶은 분은 메뉴얼을 참조하도록 하세요.


--------- templates/index.tpl --------
{include file="header.tpl" title="Home Page"}
{if $Name eq ""}
Hello, Noname!<br>
{elseif $Name eq "Ned"}
Hello, Neddy!<br>
{else}
Hello, {$Name}<br>
{/if}

{$FirstName}, {$LastName}<br>
{$Address}, {$Zipcode}
{include file="footer.tpl"}


출처 : PHP SCHOOL
역자 : 조한석 님 <sizer@systong.co.kr>