标签:res bsp style run 技术分享 织梦 php https html
织梦自定义字段为多选checkbox时,前台根据checkbox选择的值,对应输出不同的效果,用runphp解决
[field:字段 runphp=yes]
$arr = explode(‘,‘,@me);
$result = ‘‘;
for($index=0;$index<count($arr);$index++){
$result .= "<span class=‘tag‘>$arr[$index]</span>";
}
@me = $result;
[/field:字段]
{dede:field.字段 runphp=yes}
$arr = explode(‘,‘,@me);
$result = ‘‘;
for($index=0;$index<count($arr);$index++){
$result .= "<span class=‘tag‘>$arr[$index]</span>";
}
@me = $result;
{/dede:field.字段}
标签:res bsp style run 技术分享 织梦 php https html
原文地址:https://www.cnblogs.com/dedevip/p/9901206.html