smarty modifier 函數

smarty:  <td>{$info.receive_group|modifier:identity_cate}</td>

 

 

php:  gloabel.lib.php

/**
 *    獲取用戶身份
 *    @param     str $operate
 *    @return    string
 */
function identity_cate($identity){
    $identitys = array('all'=>'所有會員','institutions'=>'採購商','supplier'=>'供應商','distributor'=>'分銷商','other'=>'其他');
 $cats = "";
    $categorys = explode(',', $identity);
 foreach($categorys as $val){
  if($val){
   $cats .= $identitys[$val].","; 
  }
  
 }
 return $cats;
}

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章