smarty modifier 函数

来源:互联网 发布:手机淘宝账号申请 编辑:程序博客网 时间:2024/06/05 18:33

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;
}

原创粉丝点击