1. 程式人生 > >織夢checkbox欄位在模板中runphp自定義輸出

織夢checkbox欄位在模板中runphp自定義輸出

織夢自定義欄位為多選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.欄位}