最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
Smarty中{if},{elseif},{else}条件用法介绍
时间:2022-06-25 00:59:38 编辑:袖梨 来源:一聚教程网
php Smarty模板条件选择结构if-elseif-else,{if}必须和{/if}成对出现,当然也可以使用{else}和{elseif}子句,{if}中可以使用如下修饰词:
if实例
Example 7.15. {if} statements
| 代码如下 | 复制代码 |
|
{if $name eq 'Fred'} {* an example with "or" logic *} {* same as above *}
{* check for array. *} {* check for not null. *}
{* 0=even, 1=even, 2=even, 3=odd, 4=odd, 5=odd, etc. *} |
|
if elseif 实例:
| 代码如下 | 复制代码 |
|
{if isset($name) && $name == 'Blog'} {if is_array($foo) && count($foo) > 0} |
|
实例
| 代码如下 | 复制代码 | ||
|
|||
程序为$users变量赋值为如下数组:
| 代码如下 | 复制代码 |
|
array(
) |
|
参考
| Qualifier | Alternates | Syntax Example | Meaning | PHP Equivalent |
|---|---|---|---|---|
| == | eq | $a eq $b | equals | == |
| != | ne, neq | $a neq $b | not equals | != |
| > | gt | $a gt $b | greater than | > |
| < | lt | $a lt $b | less than | < |
| >= | gte, ge | $a ge $b | greater than or equal | >= |
| <= | lte, le | $a le $b | less than or equal | <= |
| === | $a === 0 | check for identity | === | |
| ! | not | not $a | negation (unary) | ! |
| % | mod | $a mod $b | modulous | % |
| is [not] div by | $a is not div by 4 | divisible by | $a % $b == 0 | |
| is [not] even | $a is not even | [not] an even number (unary) | $a % 2 == 0 | |
| is [not] even by | $a is not even by $b | grouping level [not] even | ($a / $b) % 2 == 0 | |
| is [not] odd | $a is not odd | [not] an odd number (unary) | $a % 2 != 0 | |
| is [not] odd by | $a is not odd by $b | [not] an odd grouping | ($a / $b) % 2 != 0 |
相关文章
- 洛克王国世界s1限定精灵蛋怎么获得-s1赛季炫彩蛋获取方法 11-06
- 天国拯救2大嘴约翰尼支线任务攻略分享 11-06
- 天国拯救2成名时刻支线任务攻略分享 11-06
- 天国拯救2赦免者支线任务完成方法分享 11-06
- 东方异域见闻魔理沙普攻流无伤轮椅攻略 11-06
- 燕云十六声九流门怎么跑商-九流门跑商及声望提升攻略 11-06