smarty模板引擎中内建函数if、elseif和else的使用方法_PHP

WBOY
Release: 2016-05-31 13:17:09
Original
881 people have browsed it

本文实例讲述了smarty内建函数if、elseif与else的使用方法,分享给大家供大家参考。具体如下:

模板文件:temp.tpl

代码如下:


smarty内建函数if、elseif和else的使用

实例1——>if的使用:取出键名不等于c3和n3之外的键值


{foreach from=$arr4 item=temp}
 {foreach from=$temp item=value key=k}
  {if $k neq "c3" and $k neq "n3"}
   {$k}={$value}
  {/if}
 {/foreach}

{/foreach}

实例2——>elseif的使用:如果是美女,输出一句,否则输出另外一句


{foreach from=$arr4 item=temp}
 {foreach from=$temp item=value key=k}
  {if $value eq "美女"}
   你是个美女
  {else}
   你们都是帅哥
  {/if}
 {/foreach}
{/foreach}

希望本文所述对大家的php程序设计有所帮助。

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template