欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

利用Smarty实现文本隔行变色

程序员文章站 2022-05-18 20:38:22
...
利用Smarty实现文本隔行变色

php页面

 assign('list',$rows);
$smarty -> display('1.html');

模板页面设计




{foreach from=$list item='value' key='k' name='color'}
{if $smarty.foreach.color.iteration%2== 0}

{else}

{/if}
{/foreach}
商品id 商品名称 商品logo 商品描述
{$value.brand_id} {$value.brand_name} {$value.brand_logo} {$value.brand_desc}
{$value.brand_id} {$value.brand_name} {$value.brand_logo} {$value.brand_desc}