前几天做项目练习,用到smarty模板,把以前的php输出代码全部替换成smarty标签。可是遇到php的isset的地方就不知道怎么用smarty替换了。也没找到smarty的相关代码。
其实,这只是我对smarty的理解不够。smarty无非就是把php的标签换了。在smarty生成的混编文件里面,依然是php代码,该怎么用还是怎么用。因此考虑到从次出出发。smarty只是起替换标签的作用。
php代码:
<?php echo isset($index)?'index':'default'; ?>
smarty代码:
{if isset($index)} index {else} default {/if}
转载请注明带链来源:春语精椿