码迷,mamicode.com
首页 > 其他好文 > 详细

夺命雷公狗---Smarty NO:08 if–elseif–else函数

时间:2015-12-09 17:16:14      阅读:149      评论:0      收藏:0      [点我收藏+]

标签:

功能:条件判断(分支)

基本语法:

{if}

{elseif}

{else}

{/if}

demo4.html示例代码:

 

<!DOCTYPE html>
<html>
<head>
<meta charset=’utf-8′>
<title></title>
</head>
<body>
{if $i==1}
吃饭
{elseif $i==2}
读书
{elseif $i==3}
敲代码
{else}
睡觉
{/if}
</body>
</html>

 

 

demo4.php

 

<?php
require “smarty/Smarty.class.php”;
$smarty = new Smarty();
$i = ‘2’;
$smarty -> assign(‘i’,$i);
$smarty -> display(“demo4.html”);

 

夺命雷公狗---Smarty NO:08 if–elseif–else函数

标签:

原文地址:http://www.cnblogs.com/leigood/p/5033103.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!